mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
23 lines
426 B
Nix
23 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";
|
|
};
|
|
|
|
}
|