depot/pkgs/development/ocaml-modules/irmin/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

43 lines
667 B
Nix

{ buildDunePackage
, astring, digestif, fmt, jsonm, logs, ocamlgraph, uri
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
, vector, hex, alcotest, qcheck-alcotest
}:
buildDunePackage {
pname = "irmin";
inherit (ppx_irmin) src version;
minimalOCamlVersion = "4.10";
propagatedBuildInputs = [
astring
bheap
digestif
fmt
jsonm
logs
lwt
mtime
ocamlgraph
optint
ppx_irmin
repr
uri
uutf
];
checkInputs = [
vector
hex
alcotest
qcheck-alcotest
];
doCheck = true;
meta = ppx_irmin.meta // {
description = "Distributed database built on the same principles as Git";
};
}