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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
411 B
Nix
Raw Normal View History

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