ocamlPackages.index: init at 1.0.1

This commit is contained in:
Vincent Laporte 2019-12-09 10:28:48 +00:00
parent 65543e5839
commit d7ec7abd1f
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, fetchurl, buildDunePackage, fmt, logs }:
buildDunePackage rec {
pname = "index";
version = "1.0.1";
minimumOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
sha256 = "1006wr3g21s4j2vsd73gphhkrh1fy4swh6gqvlsa9c6q7vz9wbvz";
};
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 ];
};
}

View file

@ -362,6 +362,8 @@ let
httpaf = callPackage ../development/ocaml-modules/httpaf { };
index = callPackage ../development/ocaml-modules/index { };
inifiles = callPackage ../development/ocaml-modules/inifiles { };
iri = callPackage ../development/ocaml-modules/iri { };