about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-04-13 17:33:08 +0200
committersternenseemann <git@lukasepple.de>2020-04-13 17:43:41 +0200
commitd7c39587690f0a2baba3f400e2eb9a963937505f (patch)
treefd2018c2f2863ab72f4f5383e9e5f5074aaf1b1b /pkgs/development/ocaml-modules
parent87d598e310ce6d159bf7a91806eda75538475e16 (diff)
downloadnixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar.gz
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar.bz2
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar.lz
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar.xz
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.tar.zst
nixlib-d7c39587690f0a2baba3f400e2eb9a963937505f.zip
ocamlPackages.index: 1.0.1 -> 1.2.0
Note: tests are available, should be added in the future (crowbar is required)
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/index/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/index/default.nix b/pkgs/development/ocaml-modules/index/default.nix
index b1141f814a89..d0857f7ef0a1 100644
--- a/pkgs/development/ocaml-modules/index/default.nix
+++ b/pkgs/development/ocaml-modules/index/default.nix
@@ -1,16 +1,17 @@
-{ lib, fetchurl, buildDunePackage, fmt, logs }:
+{ lib, fetchurl, buildDunePackage, fmt, logs, stdlib-shims }:
 
 buildDunePackage rec {
   pname = "index";
-  version = "1.0.1";
+  version = "1.2.0";
 
   minimumOCamlVersion = "4.07";
 
   src = fetchurl {
     url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz";
-    sha256 = "1006wr3g21s4j2vsd73gphhkrh1fy4swh6gqvlsa9c6q7vz9wbvz";
+    sha256 = "0d44s1d2mpxvpg0zh57c928wf1w1wd33l1fw5r62al5zmi710ff6";
   };
 
+  buildInputs = [ stdlib-shims ];
   propagatedBuildInputs = [ fmt logs ];
 
   meta = {