summaryrefslogtreecommitdiffstats
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-07-17 21:04:43 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2022-07-17 21:04:43 +0200
commitf201cf5f7891125d9a09431166398a82bb8370d0 (patch)
tree923e3e8bbead224cf31b380b7ec087581f85a184 /pkgs/development/coq-modules
parentc490f57e189fdb4f19d4eb9c930caf0c3afa28e1 (diff)
coqPackages.fourcolor: 1.2.4 → 1.2.5
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/fourcolor/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/coq-modules/fourcolor/default.nix b/pkgs/development/coq-modules/fourcolor/default.nix
index a9c5d021077b..3615f5513a39 100644
--- a/pkgs/development/coq-modules/fourcolor/default.nix
+++ b/pkgs/development/coq-modules/fourcolor/default.nix
@@ -5,14 +5,16 @@ mkCoqDerivation {
pname = "fourcolor";
owner = "math-comp";
- release."1.2.3".rev = "v1.2.3";
+ releaseRev = v: "v${v}";
+
release."1.2.3".sha256 = "sha256-gwKfUa74fIP7j+2eQgnLD7AswjCtOFGHGaIWb4qI0n4=";
- release."1.2.4".rev = "v1.2.4";
release."1.2.4".sha256 = "sha256-iSW2O1kuunvOqTolmGGXmsYTxo2MJYCdW3BnEhp6Ksg=";
+ release."1.2.5".sha256 = "sha256-3qOPNCRjGK2UdHGMSqElpIXhAPVCklpeQgZwf9AFals=";
inherit version;
defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
- { cases = [ (isGe "8.11") (isGe "1.11.0") ]; out = "1.2.4"; }
+ { cases = [ (isGe "8.11") (isGe "1.12") ]; out = "1.2.5"; }
+ { cases = [ (isGe "8.11") (range "1.11" "1.14") ]; out = "1.2.4"; }
{ cases = [ (isLe "8.13") (pred.inter (isGe "1.11.0") (isLt "1.13")) ]; out = "1.2.3"; }
] null;