summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-03-15 13:03:10 -0400
committerShea Levy <shea@shealevy.com>2014-03-15 13:03:10 -0400
commit389c3951a8381b31097064c3f71147c0e3eb601f (patch)
tree164d67de6f7523bcf7c52c4e0f29eba5d82ca9cb /pkgs/applications/science
parente76c059b2370294a369bb5c9297668c3f37c3f5c (diff)
parentc0f779ceee97f60dfcb9de8872a310e7390c15c6 (diff)
downloadnixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar.gz
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar.bz2
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar.lz
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar.xz
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.tar.zst
nixlib-389c3951a8381b31097064c3f71147c0e3eb601f.zip
Merge branch 'coq' of git://github.com/thoughtpolice/nixpkgs
coq: 8.4pl2 -> 8.4pl3
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/logic/coq/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix
index b4a7a203a3c4..aa3ba878eb59 100644
--- a/pkgs/applications/science/logic/coq/default.nix
+++ b/pkgs/applications/science/logic/coq/default.nix
@@ -3,7 +3,7 @@
 {stdenv, fetchurl, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null}:
 
 let 
-  version = "8.4pl2";
+  version = "8.4pl3";
   buildIde = lablgtk != null;
   ideFlags = if buildIde then "-lablgtkdir ${lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
   idePath = if buildIde then ''
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
-    sha256 = "1n52pky7bb45irk2jw6f4rd3kvy8lm2yfldjwdhiic0kyqw9lwgv";
+    sha256 = "0f7v3j4zsrhpswdh47bb30vwgsr0ck79jkkz01a5a74qgxiksn4p";
   };
 
   buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];
@@ -54,7 +54,7 @@ stdenv.mkDerivation {
     '';
     homepage = "http://coq.inria.fr";
     license = "LGPL";
-    maintainers = [ stdenv.lib.maintainers.roconnor ];
+    maintainers = with stdenv.lib.maintainers; [ roconnor thoughtpolice ];
     platforms = stdenv.lib.platforms.linux;
   };
 }