summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-07-23 19:29:35 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-07-23 19:30:39 +0200
commitab4291249896e8996e4ae523f5e33a6da2f6e4b3 (patch)
tree63f2547950af1b7e9fad287dddc454b19b04481f /pkgs/development/ocaml-modules
parent5f6dd482ac7198a8d309eadb04b16b9a595a9282 (diff)
downloadnixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar.gz
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar.bz2
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar.lz
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar.xz
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.tar.zst
nixpkgs-ab4291249896e8996e4ae523f5e33a6da2f6e4b3.zip
ocaml-macaque: 0.7.1 -> 0.7.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/macaque/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/macaque/default.nix b/pkgs/development/ocaml-modules/macaque/default.nix
index f2d13ad1f13..99c2a292fe8 100644
--- a/pkgs/development/ocaml-modules/macaque/default.nix
+++ b/pkgs/development/ocaml-modules/macaque/default.nix
@@ -1,10 +1,10 @@
-{stdenv, fetchurl, ocaml, findlib, pgocaml, camlp4}:
+{ stdenv, fetchzip, ocaml, findlib, pgocaml, camlp4 }:
 
 stdenv.mkDerivation {
-  name = "ocaml-macaque-0.7.1";
-  src = fetchurl {
-    url = https://github.com/ocsigen/macaque/archive/0.7.1.tar.gz;
-    sha256 = "0wnq3pgpcrfpivr8j7p827rhag6hdx0yr0bdvma0hw1g30vwf9qa";
+  name = "ocaml-macaque-0.7.2";
+  src = fetchzip {
+    url = https://github.com/ocsigen/macaque/archive/0.7.2.tar.gz;
+    sha256 = "14i0a8cndzndjmlkyhf31r451q99cnkndgxcj0id4qjqhdl4bmjv";
   };
 
   buildInputs = [ ocaml findlib camlp4 ];