depot/third_party/nixpkgs/pkgs/development/ocaml-modules/index/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 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 ];
};
}