nixpkgs/pkgs/development/ocaml-modules/irmin/fs.nix
2024-03-27 06:04:58 +01:00

22 lines
405 B
Nix

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