summary refs log tree commit diff
path: root/pkgs/applications/science/logic
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2015-12-21 16:11:55 -0800
committerJohn Wiegley <johnw@newartisans.com>2015-12-21 16:12:43 -0800
commitd80aa87b131d4bcdad1942d526a46992e82d4cd3 (patch)
tree1d8c73f2a082f61859ff5a64ee9c0fdeb060c038 /pkgs/applications/science/logic
parentbf47b58f21740cf0c6659d3f01d0bfd68e21f828 (diff)
downloadnixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar.gz
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar.bz2
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar.lz
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar.xz
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.tar.zst
nixlib-d80aa87b131d4bcdad1942d526a46992e82d4cd3.zip
coqPackages_8_5.coq: 8.5b2 -> 8.5rc1
Diffstat (limited to 'pkgs/applications/science/logic')
-rw-r--r--pkgs/applications/science/logic/coq/8.5.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix
index 2afa18d40a4b..df888cf5c793 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.5b2";
+  version = "8.5rc1";
   coq-version = "8.5";
   buildIde = lablgtk != null;
   ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
@@ -23,8 +23,8 @@ stdenv.mkDerivation {
   inherit ocaml camlp5;
 
   src = fetchurl {
-    url = https://coq.inria.fr/distrib/V8.5beta2/files/coq-8.5beta2.tar.gz;
-    sha256 = "1z34ch56lld86srgsjdwdq3girz0k0wqmvyxsa7jwvvxn3qmmq2v";
+    url = https://coq.inria.fr/distrib/V8.5rc1/files/coq-8.5rc1.tar.gz;
+    sha256 = "0n8mb7di9iwg8dgy1xmivf2ajx8kqkrj9mafc32vicn2lbg16q2r";
   };
 
   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 Makefile.build --replace "ifeq (\$(ARCH),Darwin)" "ifeq (\$(ARCH),Darwinx)"
+    substituteInPlace configure.ml --replace "if arch = \"Darwin\" then \"md5" "if arch = \"Darwinx\" then \"md5"
     ${csdpPatch}
   '';