7e20e9039e
Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
36 lines
997 B
Nix
36 lines
997 B
Nix
{ lib, mkCoqDerivation, mathcomp, version ? null }:
|
|
with lib;
|
|
|
|
mkCoqDerivation {
|
|
pname = "odd-order";
|
|
owner = "math-comp";
|
|
|
|
release."1.13.0".rev = "mathcomp-odd-order.1.13.0";
|
|
release."1.13.0".sha256 = "sha256-EzNKR/JzM8T17sMhPhgZNs14e50X4dY3OwFi133IsT0=";
|
|
release."1.12.0".rev = "mathcomp-odd-order.1.12.0";
|
|
release."1.12.0".sha256 = "sha256-omsfdc294CxKAHNMMeqJCcVimvyRCHgxcQ4NJOWSfNM=";
|
|
|
|
inherit version;
|
|
defaultVersion = with versions; switch mathcomp.character.version [
|
|
{ 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 = {
|
|
description = "Formal proof of the Odd Order Theorem";
|
|
maintainers = with maintainers; [ siraben ];
|
|
license = licenses.cecill-b;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|