mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
c2892b3fc9
* coqPackages.mathcomp: 1.17.0 -> 1.18.0 * coqPackages.mathcomp-analysis: 0.6.5 -> 0.6.6
24 lines
771 B
Nix
24 lines
771 B
Nix
{ coq, mkCoqDerivation, mathcomp, coqeal, mathcomp-real-closed,
|
|
mathcomp-bigenough, mathcomp-zify, mathcomp-algebra-tactics,
|
|
lib, version ? null }:
|
|
|
|
mkCoqDerivation {
|
|
|
|
pname = "apery";
|
|
|
|
inherit version;
|
|
defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [
|
|
{ cases = [ (range "8.13" "8.16") (range "1.12.0" "1.17.0") ]; out = "1.0.2"; }
|
|
] null;
|
|
|
|
release."1.0.2".sha256 = "sha256-llxyMKYvWUA7fyroG1S/jtpioAoArmarR1edi3cikcY=";
|
|
|
|
propagatedBuildInputs = [ mathcomp.field coqeal mathcomp-real-closed
|
|
mathcomp-bigenough mathcomp-zify mathcomp-algebra-tactics ];
|
|
|
|
meta = {
|
|
description = "A formally verified proof in Coq, by computer algebra, that ζ(3) is irrational";
|
|
license = lib.licenses.cecill-c;
|
|
};
|
|
}
|