My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/ocaml-modules/irmin/pack.nix

20 lines
383 B

{ lib, buildDunePackage, alcotest-lwt, index, irmin, irmin-test }:
buildDunePackage rec {
pname = "irmin-pack";
inherit (irmin) version src;
propagatedBuildInputs = [ index irmin ];
checkInputs = lib.optionals doCheck [ alcotest-lwt irmin-test ];
doCheck = true;
meta = irmin.meta // {
description = "Irmin backend which stores values in a pack file";
};
}