nixpkgs/pkgs/development/ocaml-modules/resto/default.nix
Ulrik Strid ea8c2698be
ligo: 0.53 -> 0.54 (#197508)
* ocamlPackages.resto:  0.7 -> 1.0

* ocamlPackages.bls12-381: 4.0.0 -> 5.0.0

* ligo: 0.53.0 -> 0.54.0
2022-10-27 12:09:29 +02:00

27 lines
624 B
Nix

{ lib, fetchFromGitLab, buildDunePackage, uri }:
buildDunePackage rec {
pname = "resto";
version = "1.0";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = "resto";
rev = "v${version}";
sha256 = "sha256-DIm7fmISsCgRDi4p3NsUk7Cvs/dHpIKMdAOVdYLX2mc=";
};
propagatedBuildInputs = [
uri
];
# resto has infinite recursion in their tests
doCheck = false;
meta = {
description = "A minimal OCaml library for type-safe HTTP/JSON RPCs";
homepage = "https://gitlab.com/nomadic-labs/resto";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}