coqPackages.fourcolor: init at 1.2.3

authored by

Ben Siraphob and committed by
Vincent Laporte
2341ffee 343d30c1

+25
+24
pkgs/development/coq-modules/fourcolor/default.nix
··· 1 + { lib, mkCoqDerivation, coq, mathcomp, version ? null }: 2 + with lib; 3 + 4 + mkCoqDerivation { 5 + pname = "fourcolor"; 6 + owner = "math-comp"; 7 + 8 + release."1.2.3".rev = "v1.2.3"; 9 + release."1.2.3".sha256 = "sha256-gwKfUa74fIP7j+2eQgnLD7AswjCtOFGHGaIWb4qI0n4="; 10 + 11 + inherit version; 12 + defaultVersion = with versions; switch mathcomp.version [ 13 + { case = pred.inter (isGe "1.11.0") (isLt "1.13"); out = "1.2.3"; } 14 + ] null; 15 + 16 + propagatedBuildInputs = [ mathcomp.algebra ]; 17 + 18 + meta = { 19 + description = "Formal proof of the Four Color Theorem "; 20 + maintainers = with maintainers; [ siraben ]; 21 + license = licenses.cecill-b; 22 + platforms = platforms.unix; 23 + }; 24 + }
+1
pkgs/top-level/coq-packages.nix
··· 33 33 equations = callPackage ../development/coq-modules/equations { }; 34 34 fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {}; 35 35 flocq = callPackage ../development/coq-modules/flocq {}; 36 + fourcolor = callPackage ../development/coq-modules/fourcolor {}; 36 37 gappalib = callPackage ../development/coq-modules/gappalib {}; 37 38 heq = callPackage ../development/coq-modules/heq {}; 38 39 hierarchy-builder = callPackage ../development/coq-modules/hierarchy-builder {};