ocamlPackages.irmin-mem: init at 2.0.0
This commit is contained in:
parent
a21d658051
commit
5bbc1c1159
2 changed files with 21 additions and 0 deletions
19
pkgs/development/ocaml-modules/irmin/mem.nix
Normal file
19
pkgs/development/ocaml-modules/irmin/mem.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, buildDunePackage, irmin, irmin-test }:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
||||
pname = "irmin-mem";
|
||||
|
||||
inherit (irmin) version src;
|
||||
|
||||
propagatedBuildInputs = [ irmin ];
|
||||
|
||||
checkInputs = lib.optional doCheck irmin-test;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = irmin.meta // {
|
||||
description = "Generic in-memory Irmin stores";
|
||||
};
|
||||
|
||||
}
|
|
@ -372,6 +372,8 @@ let
|
|||
|
||||
irmin = callPackage ../development/ocaml-modules/irmin { };
|
||||
|
||||
irmin-mem = callPackage ../development/ocaml-modules/irmin/mem.nix { };
|
||||
|
||||
irmin-test = callPackage ../development/ocaml-modules/irmin/test.nix { };
|
||||
|
||||
jingoo = callPackage ../development/ocaml-modules/jingoo {
|
||||
|
|
Loading…
Reference in a new issue