lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

coqPackages.mathcomp: 1.17.0 -> 1.18.0 (#265046)

* coqPackages.mathcomp: 1.17.0 -> 1.18.0

* coqPackages.mathcomp-analysis: 0.6.5 -> 0.6.6

authored by

Pierre Roux and committed by
GitHub
c2892b3f bae7f646

+23 -13
+1 -1
pkgs/development/coq-modules/fourcolor/default.nix
··· 16 16 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 17 17 { cases = [ (isGe "8.16") (isGe "2.0") ]; out = "1.3.1"; } 18 18 { cases = [ (isGe "8.16") "2.0.0" ]; out = "1.3.0"; } 19 - { cases = [ (isGe "8.11") (range "1.12" "1.17") ]; out = "1.2.5"; } 19 + { cases = [ (isGe "8.11") (range "1.12" "1.18") ]; out = "1.2.5"; } 20 20 { cases = [ (isGe "8.11") (range "1.11" "1.14") ]; out = "1.2.4"; } 21 21 { cases = [ (isLe "8.13") (lib.pred.inter (isGe "1.11.0") (isLt "1.13")) ]; out = "1.2.3"; } 22 22 ] null;
+9 -5
pkgs/development/coq-modules/graph-theory/default.nix
··· 1 - { lib, mkCoqDerivation, coq, mathcomp-algebra, mathcomp-finmap, mathcomp-fingroup 1 + { lib, mkCoqDerivation, coq, mathcomp, mathcomp-finmap 2 2 , fourcolor, hierarchy-builder, version ? null }: 3 3 4 4 mkCoqDerivation { ··· 6 6 7 7 release."0.9".sha256 = "sha256-Hl3JS9YERD8QQziXqZ9DqLHKp63RKI9HxoFYWSkJQZI="; 8 8 release."0.9.1".sha256 = "sha256-lRRY+501x+DqNeItBnbwYIqWLDksinWIY4x/iojRNYU="; 9 + release."0.9.2".sha256 = "sha256-DPYCZS8CzkfgpR+lmYhV2v20ezMtyWp8hdWpuh0OOQU="; 10 + release."0.9.3".sha256 = "sha256-9WX3gsw+4btJLqcGg2W+7Qy+jaZtkfw7vCp8sXYmaWw="; 9 11 10 12 releaseRev = v: "v${v}"; 11 13 12 14 inherit version; 13 - defaultVersion = with lib.versions; lib.switch coq.coq-version [ 14 - { case = range "8.14" "8.16"; out = "0.9.1"; } 15 - { case = range "8.12" "8.12"; out = "0.9"; } 15 + defaultVersion = with lib.versions; lib.switch [ coq.coq-version mathcomp.version ] [ 16 + { cases = [ (isGe "8.16") (range "2.0.0" "2.1.0") ]; out = "0.9.3"; } 17 + { cases = [ (range "8.14" "8.18") (range "1.13.0" "1.18.0") ]; out = "0.9.2"; } 18 + { cases = [ (range "8.14" "8.16") (range "1.13.0" "1.14.0") ]; out = "0.9.1"; } 19 + { cases = [ (range "8.12" "8.13") (range "1.12.0" "1.14.0") ]; out = "0.9"; } 16 20 ] null; 17 21 18 - propagatedBuildInputs = [ mathcomp-algebra mathcomp-finmap mathcomp-fingroup fourcolor hierarchy-builder ]; 22 + propagatedBuildInputs = [ mathcomp.algebra mathcomp-finmap mathcomp.fingroup fourcolor hierarchy-builder ]; 19 23 20 24 meta = with lib; { 21 25 description = "Library of formalized graph theory results in Coq";
+5 -1
pkgs/development/coq-modules/mathcomp-analysis/default.nix
··· 9 9 repo = "analysis"; 10 10 owner = "math-comp"; 11 11 12 + release."0.6.6".sha256 = "sha256-tWtv6yeB5/vzwpKZINK9OQ0yQsvD8qu9zVSNHvLMX5Y="; 13 + release."0.6.5".sha256 = "sha256-oJk9/Jl1SWra2aFAXRAVfX7ZUaDfajqdDksYaW8dv8E="; 12 14 release."0.6.1".sha256 = "sha256-1VyNXu11/pDMuH4DmFYSUF/qZ4Bo+/Zl3Y0JkyrH/r0="; 13 15 release."0.6.0".sha256 = "sha256-0msICcIrK6jbOSiBu0gIVU3RHwoEEvB88CMQqW/06rg="; 14 16 release."0.5.3".sha256 = "sha256-1NjFsi5TITF8ZWx1NyppRmi8g6YaoUtTdS9bU/sUe5k="; ··· 24 26 release."0.2.3".sha256 = "0p9mr8g1qma6h10qf7014dv98ln90dfkwn76ynagpww7qap8s966"; 25 27 26 28 defaultVersion = with versions; lib.switch [ coq.version mathcomp.version ] [ 27 - { cases = [ (isGe "8.14") (isGe "1.13.0") ]; out = "0.6.1"; } 29 + { cases = [ (isGe "8.17") (range "1.15.0" "1.18.0") ]; out = "0.6.6"; } 30 + { cases = [ (isGe "8.14") (range "1.15.0" "1.17.0") ]; out = "0.6.5"; } 31 + { cases = [ (isGe "8.14") (range "1.13.0" "1.16.0") ]; out = "0.6.1"; } 28 32 { cases = [ (isGe "8.14") (range "1.13" "1.15") ]; out = "0.5.2"; } 29 33 { cases = [ (range "8.13" "8.15") (range "1.13" "1.14") ]; out = "0.5.1"; } 30 34 { cases = [ (range "8.13" "8.15") (range "1.12" "1.14") ]; out = "0.3.13"; }
+1 -1
pkgs/development/coq-modules/mathcomp-apery/default.nix
··· 8 8 9 9 inherit version; 10 10 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 11 - { cases = [ (range "8.13" "8.16") (isGe "1.12.0") ]; out = "1.0.2"; } 11 + { cases = [ (range "8.13" "8.16") (range "1.12.0" "1.17.0") ]; out = "1.0.2"; } 12 12 ] null; 13 13 14 14 release."1.0.2".sha256 = "sha256-llxyMKYvWUA7fyroG1S/jtpioAoArmarR1edi3cikcY=";
+1 -1
pkgs/development/coq-modules/mathcomp-finmap/default.nix
··· 8 8 inherit version; 9 9 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 10 10 { cases = [ (range "8.16" "8.18") (isGe "2.0") ]; out = "2.0.0"; } 11 - { cases = [ (range "8.13" "8.18") (range "1.12" "1.17") ]; out = "1.5.2"; } 11 + { cases = [ (range "8.13" "8.18") (range "1.12" "1.18") ]; out = "1.5.2"; } 12 12 { cases = [ (isGe "8.10") (range "1.11" "1.17") ]; out = "1.5.1"; } 13 13 { cases = [ (range "8.7" "8.11") "1.11.0" ]; out = "1.5.0"; } 14 14 { cases = [ (isEq "8.11") (range "1.8" "1.10") ]; out = "1.4.0+coq-8.11"; }
+1 -1
pkgs/development/coq-modules/mathcomp-infotheo/default.nix
··· 7 7 inherit version; 8 8 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp-analysis.version] [ 9 9 { cases = [ (isGe "8.17") (isGe "0.6.0") ]; out = "0.5.2"; } 10 - { cases = [ (range "8.15" "8.16") (range "0.5.4" "0.6.2") ]; out = "0.5.1"; } 10 + { cases = [ (range "8.15" "8.16") (range "0.5.4" "0.6.5") ]; out = "0.5.1"; } 11 11 ] null; 12 12 release."0.5.1".sha256 = "sha256-yBBl5l+V+dggsg5KM59Yo9CULKog/xxE8vrW+ZRnX7Y="; 13 13 release."0.5.2".sha256 = "sha256-8WAnAV53c0pMTdwj8XcUDUkLZbpUgIQbEOgOb63uHQA=";
+1 -1
pkgs/development/coq-modules/mathcomp-zify/default.nix
··· 10 10 defaultVersion = with lib.versions; 11 11 lib.switch [ coq.coq-version mathcomp-algebra.version ] [ 12 12 { cases = [ (range "8.16" "8.18") (isGe "2.0.0") ]; out = "1.5.0+2.0+8.16"; } 13 - { cases = [ (range "8.13" "8.18") (range "1.12" "1.17.0") ]; out = "1.3.0+1.12+8.13"; } 13 + { cases = [ (range "8.13" "8.18") (range "1.12" "1.18.0") ]; out = "1.3.0+1.12+8.13"; } 14 14 { cases = [ (range "8.13" "8.16") (range "1.12" "1.17.0") ]; out = "1.1.0+1.12+8.13"; } 15 15 ] null; 16 16
+3 -1
pkgs/development/coq-modules/mathcomp/default.nix
··· 19 19 owner = "math-comp"; 20 20 withDoc = single && (args.withDoc or false); 21 21 defaultVersion = with versions; lib.switch coq.coq-version [ 22 - { case = isGe "8.15"; out = "1.17.0"; } 22 + { case = isGe "8.17"; out = "1.18.0"; } 23 + { case = range "8.15" "8.18"; out = "1.17.0"; } 23 24 { case = range "8.16" "8.18"; out = "2.1.0"; } 24 25 { case = range "8.16" "8.18"; out = "2.0.0"; } 25 26 { case = range "8.13" "8.18"; out = "1.16.0"; } ··· 37 38 release = { 38 39 "2.1.0".sha256 = "sha256-XDLx0BIkVRkSJ4sGCIE51j3rtkSGemNTs/cdVmTvxqo="; 39 40 "2.0.0".sha256 = "sha256-dpOmrHYUXBBS9kmmz7puzufxlbNpIZofpcTvJFLG5DI="; 41 + "1.18.0".sha256 = "sha256-mJJ/zvM2WtmBZU3U4oid/zCMvDXei/93v5hwyyqwiiY="; 40 42 "1.17.0".sha256 = "sha256-bUfoSTMiW/GzC1jKFay6DRqGzKPuLOSUsO6/wPSFwNg="; 41 43 "1.16.0".sha256 = "sha256-gXTKhRgSGeRBUnwdDezMsMKbOvxdffT+kViZ9e1gEz0="; 42 44 "1.15.0".sha256 = "1bp0jxl35ms54s0mdqky15w9af03f3i0n06qk12k4gw1xzvwqv21";
+1 -1
pkgs/development/coq-modules/multinomials/default.nix
··· 11 11 defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ 12 12 { cases = [ (isGe "8.16") (isGe "2.1.0") ]; out = "2.1.0"; } 13 13 { cases = [ (isGe "8.16") "2.0.0" ]; out = "2.0.0"; } 14 - { cases = [ (isGe "8.15") (range "1.15.0" "1.17.0") ]; out = "1.6.0"; } 14 + { cases = [ (isGe "8.15") (range "1.15.0" "1.18.0") ]; out = "1.6.0"; } 15 15 { cases = [ (isGe "8.10") (range "1.13.0" "1.17.0") ]; out = "1.5.6"; } 16 16 { cases = [ (range "8.10" "8.16") (range "1.12.0" "1.15.0") ]; out = "1.5.5"; } 17 17 { cases = [ (range "8.10" "8.12") "1.12.0" ]; out = "1.5.3"; }