mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
45 lines
717 B
Nix
45 lines
717 B
Nix
{ lib, buildDunePackage
|
|
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
|
|
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
|
|
, vector, hex, alcotest, qcheck-alcotest
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "irmin";
|
|
|
|
inherit (ppx_irmin) src version strictDeps;
|
|
|
|
minimalOCamlVersion = "4.10";
|
|
duneVersion = "3";
|
|
|
|
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 = "A distributed database built on the same principles as Git";
|
|
};
|
|
}
|