summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Bernardoff <vb@luminar.eu.org>2014-04-22 00:31:27 +0200
committerVincent Bernardoff <vb@luminar.eu.org>2014-04-22 00:31:27 +0200
commit123ef8a57b96da4d6fce7e633e2b82d4cbc5c547 (patch)
tree2ed3ebcea83131733812a54a24b8d9d32515b4cd /pkgs
parent552d66cd9e94f7e81043aa7becaaaa4b02e7ab6b (diff)
downloadnixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar.gz
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar.bz2
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar.lz
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar.xz
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.tar.zst
nixlib-123ef8a57b96da4d6fce7e633e2b82d4cbc5c547.zip
Updated OCaml package pcre
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/pcre/default.nix16
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/development/ocaml-modules/pcre/default.nix b/pkgs/development/ocaml-modules/pcre/default.nix
index 3ddac79a9a5e..6df221a9244c 100644
--- a/pkgs/development/ocaml-modules/pcre/default.nix
+++ b/pkgs/development/ocaml-modules/pcre/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, pcre, ocaml, findlib}:
 
 stdenv.mkDerivation {
-  name = "ocaml-pcre-6.2.5";
+  name = "ocaml-pcre-7.0.4";
 
   src = fetchurl {
-    url = https://bitbucket.org/mmottl/pcre-ocaml/downloads/pcre-ocaml-6.2.5.tar.gz;
-    sha256 = "0iwfi0wmw3xbx31ri96pmrsmmn4r3h9f0k6gyk8j4pajlhl40xzi";
+    url = https://bitbucket.org/mmottl/pcre-ocaml/downloads/pcre-ocaml-7.0.4.tar.gz;
+    sha256 = "0h2qlza7jkzgrglw1k0fydpbil0dgpv526kxyyd1apdbyzhb0mpw";
   };
 
   buildInputs = [ocaml findlib];
@@ -15,13 +15,11 @@ stdenv.mkDerivation {
 
   configurePhase = "true";	# Skip configure phase
 
-  meta = {
-    homepage = "http://www.ocaml.info/home/ocaml_sources.html";
+  meta = with stdenv.lib; {
+    homepage = "https://bitbucket.org/mmottl/pcre-ocaml";
     description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
-    license = "LGPL";
+    license = licenses.lgpl21;
     platforms = ocaml.meta.platforms;
-    maintainers = [
-      stdenv.lib.maintainers.z77z
-    ];
+    maintainers = with maintainers; [ z77z vbmithr ];
   };
 }