ocamlPackages.rpclib: init at 5.9.0
This commit is contained in:
parent
8752ff2254
commit
300464ec67
27
pkgs/development/ocaml-modules/rpclib/default.nix
Normal file
27
pkgs/development/ocaml-modules/rpclib/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, buildDunePackage, alcotest, cmdliner, rresult, result, xmlm, yojson }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "rpclib";
|
||||||
|
version = "5.9.0";
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.04";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mirage";
|
||||||
|
repo = "ocaml-rpc";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1swnnmmnkn53mxqpckdnd1j8bz0wksqznjbv0zamspxyqybmancq";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ alcotest cmdliner yojson ];
|
||||||
|
propagatedBuildInputs = [ rresult result xmlm ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/mirage/ocaml-rpc";
|
||||||
|
description = "Light library to deal with RPCs in OCaml";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = [ maintainers.vyorkin ];
|
||||||
|
};
|
||||||
|
}
|
@ -731,6 +731,8 @@ let
|
|||||||
|
|
||||||
rope = callPackage ../development/ocaml-modules/rope { };
|
rope = callPackage ../development/ocaml-modules/rope { };
|
||||||
|
|
||||||
|
rpclib = callPackage ../development/ocaml-modules/rpclib { };
|
||||||
|
|
||||||
rresult = callPackage ../development/ocaml-modules/rresult { };
|
rresult = callPackage ../development/ocaml-modules/rresult { };
|
||||||
|
|
||||||
safepass = callPackage ../development/ocaml-modules/safepass { };
|
safepass = callPackage ../development/ocaml-modules/safepass { };
|
||||||
|
Loading…
Reference in New Issue
Block a user