mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
ocamlPackages.irmin-pack: init at 2.0.0
This commit is contained in:
parent
186e55f746
commit
ad95ea7223
2 changed files with 21 additions and 0 deletions
19
pkgs/development/ocaml-modules/irmin/pack.nix
Normal file
19
pkgs/development/ocaml-modules/irmin/pack.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
}
|
|
@ -382,6 +382,8 @@ let
|
|||
|
||||
irmin-mem = callPackage ../development/ocaml-modules/irmin/mem.nix { };
|
||||
|
||||
irmin-pack = callPackage ../development/ocaml-modules/irmin/pack.nix { };
|
||||
|
||||
irmin-test = callPackage ../development/ocaml-modules/irmin/test.nix { };
|
||||
|
||||
jingoo = callPackage ../development/ocaml-modules/jingoo {
|
||||
|
|
Loading…
Reference in a new issue