summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/re
diff options
context:
space:
mode:
authorSimon Lackerbauer <simon@lackerbauer.com>2017-10-17 14:52:22 +0200
committervbgl <vbgl@users.noreply.github.com>2017-10-18 00:15:31 +0200
commit4e67a1657f124974743eed3c9be9c5f59347776b (patch)
treee15978e49a86a1cddb799aa698219a469c1ef90f /pkgs/development/ocaml-modules/re
parent482750c3cb8d7984fe1f42842abde2d5b3dc1bd8 (diff)
downloadnixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar.gz
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar.bz2
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar.lz
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar.xz
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.tar.zst
nixlib-4e67a1657f124974743eed3c9be9c5f59347776b.zip
ocamlPackages.re: 1.5.0 -> 1.7.1
Diffstat (limited to 'pkgs/development/ocaml-modules/re')
-rw-r--r--pkgs/development/ocaml-modules/re/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/re/default.nix b/pkgs/development/ocaml-modules/re/default.nix
index 1ea2310bf9fa..3be49072eb37 100644
--- a/pkgs/development/ocaml-modules/re/default.nix
+++ b/pkgs/development/ocaml-modules/re/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchzip, ocaml, findlib, ocamlbuild, ounit }:
 
 stdenv.mkDerivation rec {
-  name = "ocaml-re-1.5.0";
+  name = "ocaml-re-${version}";
+  version = "1.7.1";
 
   src = fetchzip {
-    url = "https://github.com/ocaml/ocaml-re/archive/${name}.tar.gz";
-    sha256 = "17avk7kwmgdjkri1sj5q4a59ykc9rj0bxj6ixxpl6i0n49br3f92";
+    url = "https://github.com/ocaml/ocaml-re/archive/${version}.tar.gz";
+    sha256 = "1z2z4fjrpdbl0q50fdxvy3746w1vx6ybxcb0k81hqm1342nylbmw";
   };
 
   buildInputs = [ ocaml findlib ocamlbuild ounit ];