51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
mkCoqDerivation,
|
|
mathcomp,
|
|
version ? null,
|
|
}:
|
|
|
|
mkCoqDerivation {
|
|
pname = "odd-order";
|
|
owner = "math-comp";
|
|
|
|
release."1.14.0".sha256 = "0iln70npkvixqyz469l6nry545a15jlaix532i1l7pzfkqqn6v68";
|
|
release."1.13.0".sha256 = "sha256-EzNKR/JzM8T17sMhPhgZNs14e50X4dY3OwFi133IsT0=";
|
|
release."1.12.0".sha256 = "sha256-omsfdc294CxKAHNMMeqJCcVimvyRCHgxcQ4NJOWSfNM=";
|
|
releaseRev = v: "mathcomp-odd-order.${v}";
|
|
|
|
inherit version;
|
|
defaultVersion =
|
|
with lib.versions;
|
|
lib.switch mathcomp.character.version [
|
|
{
|
|
case = (range "1.13.0" "1.15.0");
|
|
out = "1.14.0";
|
|
}
|
|
{
|
|
case = (range "1.12.0" "1.14.0");
|
|
out = "1.13.0";
|
|
}
|
|
{
|
|
case = (range "1.10.0" "1.12.0");
|
|
out = "1.12.0";
|
|
}
|
|
] null;
|
|
|
|
propagatedBuildInputs = [
|
|
mathcomp.character
|
|
mathcomp.ssreflect
|
|
mathcomp.fingroup
|
|
mathcomp.algebra
|
|
mathcomp.solvable
|
|
mathcomp.field
|
|
mathcomp.all
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Formal proof of the Odd Order Theorem";
|
|
maintainers = with maintainers; [ siraben ];
|
|
license = licenses.cecill-b;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|