summary refs log tree commit diff
path: root/pkgs/applications/science/logic
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-10-27 20:58:52 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-11-02 19:23:15 +0100
commitda68cc24f087176c576cb7ff0e05faeb4ea7672f (patch)
treec2b9820443458248faf62c0ab1b010e21f5ade7b /pkgs/applications/science/logic
parentaa39f651749812117191c9cf94d929aa94461d73 (diff)
downloadnixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar.gz
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar.bz2
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar.lz
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar.xz
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.tar.zst
nixpkgs-da68cc24f087176c576cb7ff0e05faeb4ea7672f.zip
coq: 8.5pl2 -> 8.5pl3
Diffstat (limited to 'pkgs/applications/science/logic')
-rw-r--r--pkgs/applications/science/logic/coq/8.5.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix
index eb74891f511..91266553c93 100644
--- a/pkgs/applications/science/logic/coq/8.5.nix
+++ b/pkgs/applications/science/logic/coq/8.5.nix
@@ -6,7 +6,7 @@
 {stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
 
 let
-  version = "8.5pl2";
+  version = "8.5pl3";
   coq-version = "8.5";
   buildIde = lablgtk != null;
   ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
-    sha256 = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3";
+    sha256 = "0fyk2a4fpifibq8y8jhx1891k55qnsnlygglch64sva0bph94nrh";
   };
 
   buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
     RM=$(type -tp rm)
     substituteInPlace configure --replace "/bin/uname" "$UNAME"
     substituteInPlace tools/beautify-archive --replace "/bin/rm" "$RM"
-    substituteInPlace configure.ml --replace "if arch = \"Darwin\" || arch = \"FreeBSD\" then \"md5" "if arch = \"Darwinx\" then \"md5"
+    substituteInPlace configure.ml --replace '"md5 -q"' '"md5sum"'
     ${csdpPatch}
   '';