depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/fs.nix

37 lines
437 B
Nix

{
buildDunePackage,
irmin,
astring,
logs,
lwt,
alcotest,
irmin-test,
irmin-watcher,
}:
buildDunePackage rec {
pname = "irmin-fs";
inherit (irmin) version src;
propagatedBuildInputs = [
irmin
astring
logs
lwt
];
checkInputs = [
alcotest
irmin-test
irmin-watcher
];
doCheck = true;
meta = irmin.meta // {
description = "Generic file-system backend for Irmin";
};
}