nixpkgs/pkgs/development/ocaml-modules/irmin/pack.nix
sternenseemann 5ed10dc909 ocamlPackages.irmin*: 2.0.0 -> 2.1.0
updated:

* irmin
* irmin-fs
* irmin-git
* irmin-graphql
* irmin-http
* irmin-mem
* irmin-pack (also added new dependecy ocaml_lwt)
* irmin-test
* irmin-unix
* irmin-watcher
2020-04-13 17:51:32 +02:00

21 lines
438 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;
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";
};
}