mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
19 lines
369 B
Nix
19 lines
369 B
Nix
{ buildDunePackage, irmin, irmin-test, fmt, logs, lwt, alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-chunk";
|
|
inherit (irmin) version src;
|
|
|
|
propagatedBuildInputs = [ irmin fmt logs lwt ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ alcotest irmin-test ];
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin backend which allow to store values into chunks";
|
|
};
|
|
|
|
}
|
|
|