3
0
Fork 0
forked from mirrors/nixpkgs

coq: 8.5 -> 8.5pl1

This commit is contained in:
Vincent Laporte 2016-04-12 19:43:11 +02:00
parent 9c484f29ce
commit a036fda544

View file

@ -6,7 +6,7 @@
{stdenv, fetchurl, writeText, pkgconfig, ocaml, findlib, camlp5, ncurses, lablgtk ? null, csdp ? null}:
let
version = "8.5";
version = "8.5pl1";
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.5/files/coq-8.5.tar.gz;
sha256 = "0gdfm6k5q1f8sz1xr9ijdkkvwqsb7v8prj21gmwv0z0yp6w2zac9";
url = "http://coq.inria.fr/distrib/V${version}/files/coq-${version}.tar.gz";
sha256 = "1w2xvm6w16khfn63bp95s25hnkn2ny3w0yqg3lq63gp11aqpbyjb";
};
buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ];