mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
coq_8_19: init at 8.19+rc1
This commit is contained in:
parent
5fff7f4078
commit
d77d8f69f7
@ -56,6 +56,7 @@ let
|
|||||||
"8.17.0".sha256 = "sha256-TGwm7S6+vkeZ8cidvp8pkiAd9tk008jvvPvYgfEOXhM=";
|
"8.17.0".sha256 = "sha256-TGwm7S6+vkeZ8cidvp8pkiAd9tk008jvvPvYgfEOXhM=";
|
||||||
"8.17.1".sha256 = "sha256-x+RwkbxMg9aR0L3WSCtpIz8jwA5cJA4tXAtHMZb20y4=";
|
"8.17.1".sha256 = "sha256-x+RwkbxMg9aR0L3WSCtpIz8jwA5cJA4tXAtHMZb20y4=";
|
||||||
"8.18.0".sha256 = "sha256-WhiBs4nzPHQ0R24xAdM49kmxSCPOxiOVMA1iiMYunz4=";
|
"8.18.0".sha256 = "sha256-WhiBs4nzPHQ0R24xAdM49kmxSCPOxiOVMA1iiMYunz4=";
|
||||||
|
"8.19+rc1".sha256 = "sha256-hQ57tLj8lXTbMrW+F0skPtzpHJnXbqPIc/EzocRV5qo=";
|
||||||
};
|
};
|
||||||
releaseRev = v: "V${v}";
|
releaseRev = v: "V${v}";
|
||||||
fetched = import ../../../../build-support/coq/meta-fetch/default.nix
|
fetched = import ../../../../build-support/coq/meta-fetch/default.nix
|
||||||
|
@ -19,7 +19,7 @@ let
|
|||||||
owner = "math-comp";
|
owner = "math-comp";
|
||||||
withDoc = single && (args.withDoc or false);
|
withDoc = single && (args.withDoc or false);
|
||||||
defaultVersion = with versions; lib.switch coq.coq-version [
|
defaultVersion = with versions; lib.switch coq.coq-version [
|
||||||
{ case = isGe "8.17"; out = "1.18.0"; }
|
{ case = range "8.17" "8.18"; out = "1.18.0"; }
|
||||||
{ case = range "8.15" "8.18"; out = "1.17.0"; }
|
{ case = range "8.15" "8.18"; out = "1.17.0"; }
|
||||||
{ case = range "8.16" "8.18"; out = "2.1.0"; }
|
{ case = range "8.16" "8.18"; out = "2.1.0"; }
|
||||||
{ case = range "8.16" "8.18"; out = "2.0.0"; }
|
{ case = range "8.16" "8.18"; out = "2.0.0"; }
|
||||||
|
@ -9,7 +9,7 @@ mkCoqDerivation {
|
|||||||
|
|
||||||
inherit version;
|
inherit version;
|
||||||
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
||||||
{ case = isGe "8.7"; out = "8.12.0"; }
|
{ case = range "8.7" "8.18"; out = "8.12.0"; }
|
||||||
] null;
|
] null;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -39503,6 +39503,7 @@ with pkgs;
|
|||||||
coqPackages_8_16 coq_8_16
|
coqPackages_8_16 coq_8_16
|
||||||
coqPackages_8_17 coq_8_17
|
coqPackages_8_17 coq_8_17
|
||||||
coqPackages_8_18 coq_8_18
|
coqPackages_8_18 coq_8_18
|
||||||
|
coqPackages_8_19 coq_8_19
|
||||||
coqPackages coq
|
coqPackages coq
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -189,6 +189,7 @@ in rec {
|
|||||||
coq_8_16 = mkCoq "8.16";
|
coq_8_16 = mkCoq "8.16";
|
||||||
coq_8_17 = mkCoq "8.17";
|
coq_8_17 = mkCoq "8.17";
|
||||||
coq_8_18 = mkCoq "8.18";
|
coq_8_18 = mkCoq "8.18";
|
||||||
|
coq_8_19 = mkCoq "8.19";
|
||||||
|
|
||||||
coqPackages_8_5 = mkCoqPackages coq_8_5 // { __attrsFailEvaluation = true; };
|
coqPackages_8_5 = mkCoqPackages coq_8_5 // { __attrsFailEvaluation = true; };
|
||||||
coqPackages_8_6 = mkCoqPackages coq_8_6 // { __attrsFailEvaluation = true; };
|
coqPackages_8_6 = mkCoqPackages coq_8_6 // { __attrsFailEvaluation = true; };
|
||||||
@ -204,6 +205,7 @@ in rec {
|
|||||||
coqPackages_8_16 = mkCoqPackages coq_8_16 // { __attrsFailEvaluation = true; };
|
coqPackages_8_16 = mkCoqPackages coq_8_16 // { __attrsFailEvaluation = true; };
|
||||||
coqPackages_8_17 = mkCoqPackages coq_8_17 // { __attrsFailEvaluation = true; };
|
coqPackages_8_17 = mkCoqPackages coq_8_17 // { __attrsFailEvaluation = true; };
|
||||||
coqPackages_8_18 = mkCoqPackages coq_8_18 // { __attrsFailEvaluation = true; };
|
coqPackages_8_18 = mkCoqPackages coq_8_18 // { __attrsFailEvaluation = true; };
|
||||||
|
coqPackages_8_19 = mkCoqPackages coq_8_19 // { __attrsFailEvaluation = true; };
|
||||||
coqPackages =
|
coqPackages =
|
||||||
let cp = recurseIntoAttrs coqPackages_8_18;
|
let cp = recurseIntoAttrs coqPackages_8_18;
|
||||||
in cp // { coqPackages = cp.coqPackages // { __attrsFailEvaluation = true; }; } // { __recurseIntoDerivationForReleaseJobs = true; };
|
in cp // { coqPackages = cp.coqPackages // { __attrsFailEvaluation = true; }; } // { __recurseIntoDerivationForReleaseJobs = true; };
|
||||||
|
Loading…
Reference in New Issue
Block a user