nixpkgs/pkgs/development/ocaml-modules/index/default.nix
sternenseemann d7c3958769 ocamlPackages.index: 1.0.1 -> 1.2.0
Note: tests are available, should be added in the future (crowbar is required)
2020-04-13 17:43:41 +02:00

25 lines
628 B
Nix

{ lib, fetchurl, buildDunePackage, fmt, logs, stdlib-shims }:
buildDunePackage rec {
pname = "index";
version = "1.2.0";
minimumOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
sha256 = "0d44s1d2mpxvpg0zh57c928wf1w1wd33l1fw5r62al5zmi710ff6";
};
buildInputs = [ stdlib-shims ];
propagatedBuildInputs = [ fmt logs ];
meta = {
homepage = "https://github.com/mirage/index";
description = "A platform-agnostic multi-level index";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}