mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
commit
6ff50dc164
3 changed files with 9 additions and 10 deletions
|
@ -634,6 +634,7 @@
|
||||||
zauberpony = "Elmar Athmer <elmar@athmer.org>";
|
zauberpony = "Elmar Athmer <elmar@athmer.org>";
|
||||||
zef = "Zef Hemel <zef@zef.me>";
|
zef = "Zef Hemel <zef@zef.me>";
|
||||||
zimbatm = "zimbatm <zimbatm@zimbatm.com>";
|
zimbatm = "zimbatm <zimbatm@zimbatm.com>";
|
||||||
|
Zimmi48 = "Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>";
|
||||||
zohl = "Al Zohali <zohl@fmap.me>";
|
zohl = "Al Zohali <zohl@fmap.me>";
|
||||||
zoomulator = "Kim Simmons <zoomulator@gmail.com>";
|
zoomulator = "Kim Simmons <zoomulator@gmail.com>";
|
||||||
zraexy = "David Mell <zraexy@gmail.com>";
|
zraexy = "David Mell <zraexy@gmail.com>";
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
, ocamlPackages, ncurses
|
, ocamlPackages, ncurses
|
||||||
, buildIde ? true
|
, buildIde ? true
|
||||||
, csdp ? null
|
, csdp ? null
|
||||||
, version ? "8.6"
|
, version ? "8.6.1"
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -18,9 +18,10 @@ let
|
||||||
"8.5pl2" = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3";
|
"8.5pl2" = "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3";
|
||||||
"8.5pl3" = "0fyk2a4fpifibq8y8jhx1891k55qnsnlygglch64sva0bph94nrh";
|
"8.5pl3" = "0fyk2a4fpifibq8y8jhx1891k55qnsnlygglch64sva0bph94nrh";
|
||||||
"8.6" = "1pw1xvy1657l1k69wrb911iqqflzhhp8wwsjvihbgc72r3skqg3f";
|
"8.6" = "1pw1xvy1657l1k69wrb911iqqflzhhp8wwsjvihbgc72r3skqg3f";
|
||||||
|
"8.6.1" = "17cg2c40y9lskkiqfhngavp8yw3shpqgkpihh30xx0rlhn9amy1j";
|
||||||
}."${version}";
|
}."${version}";
|
||||||
coq-version = builtins.substring 0 3 version;
|
coq-version = builtins.substring 0 3 version;
|
||||||
camlp5 = ocamlPackages.camlp5_transitional;
|
camlp5 = ocamlPackages.camlp5_strict;
|
||||||
ideFlags = if buildIde then "-lablgtkdir ${ocamlPackages.lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
|
ideFlags = if buildIde then "-lablgtkdir ${ocamlPackages.lablgtk}/lib/ocaml/*/site-lib/lablgtk2 -coqide opt" else "";
|
||||||
csdpPatch = if csdp != null then ''
|
csdpPatch = if csdp != null then ''
|
||||||
substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
|
substituteInPlace plugins/micromega/sos.ml --replace "; csdp" "; ${csdp}/bin/csdp"
|
||||||
|
@ -132,7 +133,7 @@ self = stdenv.mkDerivation {
|
||||||
homepage = http://coq.inria.fr;
|
homepage = http://coq.inria.fr;
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
branch = coq-version;
|
branch = coq-version;
|
||||||
maintainers = with maintainers; [ roconnor thoughtpolice vbgl ];
|
maintainers = with maintainers; [ roconnor thoughtpolice vbgl Zimmi48 ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}; in self
|
}; in self
|
||||||
|
|
|
@ -5229,13 +5229,10 @@ with pkgs;
|
||||||
|
|
||||||
cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { };
|
cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { };
|
||||||
|
|
||||||
compcert = callPackage ../development/compilers/compcert ((
|
compcert = callPackage ../development/compilers/compcert {
|
||||||
if system == "x86_64-linux"
|
# Pin the version of coq used in compcert to 8.6 until the next release
|
||||||
then { tools = pkgsi686Linux.stdenv.cc; }
|
coq = callPackage ../applications/science/logic/coq { version = "8.6"; };
|
||||||
else {}
|
};
|
||||||
) // {
|
|
||||||
coq = coq_8_6;
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
# Users installing via `nix-env` will likely be using the REPL,
|
# Users installing via `nix-env` will likely be using the REPL,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue