1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00
nixpkgs/pkgs/development/ocaml-modules/index/default.nix

48 lines
936 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage
, repr, ppx_repr, fmt, logs, mtime, stdlib-shims
, cmdliner, progress, semaphore-compat, optint
, alcotest, crowbar, re
}:
2019-12-09 10:28:48 +00:00
buildDunePackage rec {
pname = "index";
version = "1.4.1";
2019-12-09 10:28:48 +00:00
src = fetchurl {
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
sha256 = "sha256:01i24m1xh7vn44sq7gsxg1z0jxa6rg80bpjcp3cvg6zfjpsl7sfx";
2019-12-09 10:28:48 +00:00
};
minimalOCamlVersion = "4.08";
2021-06-06 10:03:42 +01:00
useDune2 = true;
buildInputs = [
stdlib-shims
];
propagatedBuildInputs = [
2021-06-06 10:03:42 +01:00
cmdliner
fmt
logs
mtime
ppx_repr
progress
repr
semaphore-compat
optint
];
2021-06-06 10:03:42 +01:00
checkInputs = [
alcotest
crowbar
re
];
doCheck = true;
2019-12-09 10:28:48 +00:00
2021-06-06 10:03:42 +01:00
meta = with lib; {
2019-12-09 10:28:48 +00:00
description = "A platform-agnostic multi-level index";
2021-06-06 10:03:42 +01:00
homepage = "https://github.com/mirage/index";
license = licenses.mit;
maintainers = with maintainers; [ vbgl ];
2019-12-09 10:28:48 +00:00
};
}