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