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.

45 lines
717 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
, vector, hex, alcotest, qcheck-alcotest
2019-12-09 10:29:01 +00:00
}:
buildDunePackage {
2019-12-09 10:29:01 +00:00
pname = "irmin";
inherit (ppx_irmin) src version strictDeps;
2019-12-09 10:29:01 +00:00
2023-02-04 20:27:33 +00:00
minimalOCamlVersion = "4.10";
duneVersion = "3";
2019-12-09 10:29:01 +00:00
propagatedBuildInputs = [
astring
bheap
digestif
fmt
jsonm
logs
lwt
mtime
ocamlgraph
optint
ppx_irmin
repr
uri
uutf
];
2019-12-09 10:29:01 +00:00
checkInputs = [
vector
hex
alcotest
qcheck-alcotest
];
doCheck = true;
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";
};
}