ocamlPackages.index: 1.0.1 -> 1.2.0

Note: tests are available, should be added in the future (crowbar is required)
This commit is contained in:
sternenseemann 2020-04-13 17:33:08 +02:00
parent 87d598e310
commit d7c3958769

View file

@ -1,16 +1,17 @@
{ lib, fetchurl, buildDunePackage, fmt, logs }: { lib, fetchurl, buildDunePackage, fmt, logs, stdlib-shims }:
buildDunePackage rec { buildDunePackage rec {
pname = "index"; pname = "index";
version = "1.0.1"; version = "1.2.0";
minimumOCamlVersion = "4.07"; minimumOCamlVersion = "4.07";
src = fetchurl { src = fetchurl {
url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz"; url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
sha256 = "1006wr3g21s4j2vsd73gphhkrh1fy4swh6gqvlsa9c6q7vz9wbvz"; sha256 = "0d44s1d2mpxvpg0zh57c928wf1w1wd33l1fw5r62al5zmi710ff6";
}; };
buildInputs = [ stdlib-shims ];
propagatedBuildInputs = [ fmt logs ]; propagatedBuildInputs = [ fmt logs ];
meta = { meta = {