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