mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
e3936ac9c1
source now inherit ppx_irmin instead of irmin, since we can test irmin using ppx_irmin and this way we avoid circular dependencies.
23 lines
458 B
Nix
23 lines
458 B
Nix
{ lib, buildDunePackage, alcotest-lwt, index, irmin, irmin-test, ocaml_lwt }:
|
|
|
|
buildDunePackage rec {
|
|
minimumOCamlVersion = "4.02.3";
|
|
|
|
pname = "irmin-pack";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [ index irmin ocaml_lwt ];
|
|
|
|
checkInputs = lib.optionals doCheck [ alcotest-lwt irmin-test ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin backend which stores values in a pack file";
|
|
};
|
|
|
|
}
|