nixpkgs/pkgs/development/ocaml-modules/irmin/default.nix

23 lines
541 B
Nix
Raw Normal View History

2019-12-09 10:29:01 +00:00
{ lib, fetchurl, buildDunePackage
, astring, base64, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, alcotest, hex, ppx_irmin
2019-12-09 10:29:01 +00:00
}:
buildDunePackage {
2019-12-09 10:29:01 +00:00
pname = "irmin";
inherit (ppx_irmin) src version;
2019-12-09 10:29:01 +00:00
useDune2 = true;
minimumOCamlVersion = "4.07";
2019-12-09 10:29:01 +00:00
propagatedBuildInputs = [ astring base64 digestif fmt jsonm logs ocaml_lwt ocamlgraph uri ];
checkInputs = [ alcotest hex ppx_irmin ];
2019-12-09 10:29:01 +00:00
doCheck = true;
meta = ppx_irmin.meta // {
2019-12-09 10:29:01 +00:00
description = "A distributed database built on the same principles as Git";
};
}