summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorMarco Maggesi <maggesi@math.unifi.it>2012-03-17 16:26:20 +0000
committerMarco Maggesi <maggesi@math.unifi.it>2012-03-17 16:26:20 +0000
commitaf37461b114f959102928b3510571029ccab2290 (patch)
tree849b6c199618805ff4d3709cbff6dce82b5282a0 /pkgs/applications/science
parent0e397758ee6474a63c533863d165e946388a94ad (diff)
downloadnixpkgs-af37461b114f959102928b3510571029ccab2290.tar
nixpkgs-af37461b114f959102928b3510571029ccab2290.tar.gz
nixpkgs-af37461b114f959102928b3510571029ccab2290.tar.bz2
nixpkgs-af37461b114f959102928b3510571029ccab2290.tar.lz
nixpkgs-af37461b114f959102928b3510571029ccab2290.tar.xz
nixpkgs-af37461b114f959102928b3510571029ccab2290.tar.zst
nixpkgs-af37461b114f959102928b3510571029ccab2290.zip
Fix building of Coq and update to version 8.3pl3.
svn path=/nixpkgs/trunk/; revision=33194
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/logic/coq/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index 35395bd25d1..ce285418ad8 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -4,7 +4,7 @@
 {stdenv, fetchurl, ocaml, findlib, camlp5, lablgtk, ncurses}:
 
 let
-  version = "8.3pl1";
+  version = "8.3pl3";
 in
 
 stdenv.mkDerivation {
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://coq.inria.fr/V${version}/files/coq-${version}.tar.gz";
-    sha256 = "0a791gsbf17y2wi0a376n78pxkhpl0lkzifhy5d3mx3lpn376j9s";
+    sha256 = "0ivrafwr4p8pklb9wfq3zyai19xdk05xr3q16xqk4q9pfad9w9dg";
   };
 
   buildInputs = [ ocaml findlib camlp5 ncurses lablgtk ];
@@ -29,7 +29,8 @@ stdenv.mkDerivation {
 
   buildFlags = "world"; # Debug with "world VERBOSE=1";
 
-  patches = [ ./configure.patch ./coq-8.3-make-3.82-compat.patch ];
+  #patches = [ ./configure.patch ./coq-8.3-make-3.82-compat.patch ];
+  patches = [ /root/configure.patch ];
 
   postPatch = ''
     UNAME=$(type -tp uname)