mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
4922992a04
ocamlPackages.data-encoding: 0.7.1 → 1.0.1 ocamlPackages.index: 1.6.1 → 1.6.2 ocamlPackages.irmin: 3.7.2 → 3.9.0 ocamlPackages.irmin-http: remove at 3.7.2 ocamlPackages.mirage-kv: 4.0.1 → 6.1.1 ocamlPackages.terminal: 0.2.1 → 0.2.2
38 lines
629 B
Nix
38 lines
629 B
Nix
{ buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt
|
|
, metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt
|
|
, hex, vector, qcheck-alcotest
|
|
}:
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "irmin-test";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
nativeBuildInputs = [ ppx_irmin ];
|
|
|
|
propagatedBuildInputs = [
|
|
irmin
|
|
ppx_irmin
|
|
alcotest-lwt
|
|
mtime
|
|
astring
|
|
fmt
|
|
jsonm
|
|
logs
|
|
lwt
|
|
metrics-unix
|
|
ocaml-syntax-shims
|
|
cmdliner
|
|
metrics
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ hex qcheck-alcotest vector ];
|
|
|
|
meta = irmin.meta // {
|
|
description = "Irmin test suite";
|
|
};
|
|
|
|
}
|