about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-02-25 10:24:50 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-02-28 19:08:40 +0100
commita3c143c39c2aa1e23627d7f629382e5c6b9c4dca (patch)
tree1c1b6e958fcfdeef85967be2439d9ee68acda43e
parent50e99d163ee971b551368e3fd263263f7dbfd5ac (diff)
downloadnixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar.gz
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar.bz2
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar.lz
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar.xz
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.tar.zst
nixlib-a3c143c39c2aa1e23627d7f629382e5c6b9c4dca.zip
ocamlPackages.camlp5: 7.03 -> 7.05
-rw-r--r--pkgs/development/tools/ocaml/camlp5/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix
index 0acd70b424a8..31cd7ccfd2c0 100644
--- a/pkgs/development/tools/ocaml/camlp5/default.nix
+++ b/pkgs/development/tools/ocaml/camlp5/default.nix
@@ -6,15 +6,22 @@ in
 
 stdenv.mkDerivation {
 
-  name = "camlp5${if transitional then "_transitional" else ""}-7.03";
+  name = "camlp5${if transitional then "_transitional" else ""}-7.05";
 
   src = fetchzip {
-    url = https://github.com/camlp5/camlp5/archive/rel703.tar.gz;
-    sha256 = "0bwzhp4qjypfa0x8drp8w434dfixm1nzrm6pcy9s5akpmqvb50a8";
+    url = https://github.com/camlp5/camlp5/archive/rel705.tar.gz;
+    sha256 = "16igfyjl2jja4f1mibjfzk0c2jr09nxsz6lb63x1jkccmy6430q2";
   };
 
   buildInputs = [ ocaml ];
 
+  postPatch = ''
+    for p in compile/compile.sh config/Makefile.tpl test/Makefile test/check_ocaml_versions.sh
+    do
+      substituteInPlace $p --replace '/bin/rm' rm
+    done
+  '';
+
   prefixKey = "-prefix ";
 
   preConfigure = "configureFlagsArray=(" +  (if transitional then "--transitional" else "--strict") +