about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorvbgl <vbgl@users.noreply.github.com>2016-07-18 11:33:51 +0200
committerGitHub <noreply@github.com>2016-07-18 11:33:51 +0200
commitd7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5 (patch)
tree0693d47b6e13439c190cece49e9c860cf7af195a /pkgs
parentd45802973fa3281fdf10c6dafa9b6889b64b5b2f (diff)
downloadnixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar.gz
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar.bz2
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar.lz
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar.xz
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.tar.zst
nixlib-d7cfdc581ca6e6e1bd671d5e2da04e4db6257ca5.zip
coq: 8.5pl1 -> 8.5pl2 (#16863)
Diffstat (limited to 'pkgs')
-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 1485626125d2..eb74891f511c 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.5pl1";
+  version = "8.5pl2";
   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 = "1w2xvm6w16khfn63bp95s25hnkn2ny3w0yqg3lq63gp11aqpbyjb";
+    sha256 = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3";
   };
 
   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\" then \"md5" "if arch = \"Darwinx\" then \"md5"
+    substituteInPlace configure.ml --replace "if arch = \"Darwin\" || arch = \"FreeBSD\" then \"md5" "if arch = \"Darwinx\" then \"md5"
     ${csdpPatch}
   '';