3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.index: 1.2.0 → 1.2.1

This commit is contained in:
sternenseemann 2020-06-29 20:48:17 +02:00 committed by Vincent Laporte
parent a4f0ed59b1
commit 5e99766cfb

View file

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