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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
590 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap, uutf
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.08";
2019-12-09 10:29:01 +00:00
propagatedBuildInputs = [
astring
digestif
fmt
jsonm
logs
ocaml_lwt
ocamlgraph
uri
repr
bheap
ppx_irmin
uutf
];
2019-12-09 10:29:01 +00:00
# circular dependency on irmin-mem
doCheck = false;
2019-12-09 10:29:01 +00:00
meta = ppx_irmin.meta // {
2019-12-09 10:29:01 +00:00
description = "A distributed database built on the same principles as Git";
};
}