summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-09-09 18:02:32 +0100
committerJohn Wiegley <johnw@newartisans.com>2014-09-09 18:02:32 +0100
commitbf009f87a944a7664a8af340caa5444537400fc1 (patch)
treefea0197a9d240e5c687af4dbc8db5a924a004198 /pkgs
parentac724e7bbc3b15ff97d81991a1e28db47bdcbc93 (diff)
downloadnixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar.gz
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar.bz2
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar.lz
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar.xz
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.tar.zst
nixpkgs-bf009f87a944a7664a8af340caa5444537400fc1.zip
coq_HEAD: update to latest Git version
In particular, to get the fix for #3585 in the Coq bug tracker
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/science/logic/coq/HEAD.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/science/logic/coq/HEAD.nix b/pkgs/applications/science/logic/coq/HEAD.nix
index ed922b3aedb..1be95a17eed 100644
--- a/pkgs/applications/science/logic/coq/HEAD.nix
+++ b/pkgs/applications/science/logic/coq/HEAD.nix
@@ -3,7 +3,7 @@
 {stdenv, fetchgit, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
 
 let 
-  version = "8.5pre-c70d5b2";
+  version = "8.5pre-fbbb86b";
   buildIde = lablgtk != null;
   ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
   idePath = if buildIde then ''
@@ -16,8 +16,8 @@ stdenv.mkDerivation {
 
   src = fetchgit {
     url = git://scm.gforge.inria.fr/coq/coq.git;
-    rev = "c70d5b27ad5872c74e20b6c997383fb4462a68dc";
-    sha256 = "02wks2aivgjcf4h3ss9rn683vyawz8gl8rbysdq7awxh062316l2";
+    rev = "f7c6b864a509a4cca11cac5fbd5d37efc";
+    sha256 = "0v84pjxx361afkipgwkc4d2wmn7v1c5n2y8d264kc26i58cgrrf4";
   };
 
   buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];