mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
204f7dc335
* ocamlPackages.irmin: 2.6.0 -> 2.7.1 https://github.com/mirage/irmin/releases/tag/2.7.1 * ocamlPackages.index: 1.3.1 -> 1.4.0 https://github.com/mirage/index/releases/tag/1.4.0 * ocamlPackages.repr: 0.3.0 -> 0.4.0 https://github.com/mirage/repr/releases/tag/0.4.0 Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
26 lines
513 B
Nix
26 lines
513 B
Nix
{ lib, buildDunePackage
|
|
, alcotest-lwt, index, irmin, irmin-layers, irmin-test, ocaml_lwt, fpath, optint
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
minimumOCamlVersion = "4.02.3";
|
|
|
|
pname = "irmin-pack";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
useDune2 = true;
|
|
|
|
buildInputs = [ fpath ];
|
|
propagatedBuildInputs = [ index irmin irmin-layers ocaml_lwt optint ];
|
|
|
|
checkInputs = [ alcotest-lwt irmin-test ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin backend which stores values in a pack file";
|
|
};
|
|
|
|
}
|