nixpkgs/pkgs/development/coq-modules/odd-order/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2021-03-30 08:34:14 +00:00
{ lib, mkCoqDerivation, mathcomp, version ? null }:
mkCoqDerivation {
pname = "odd-order";
owner = "math-comp";
2022-06-30 11:40:36 +00:00
release."1.14.0".sha256 = "0iln70npkvixqyz469l6nry545a15jlaix532i1l7pzfkqqn6v68";
2022-02-01 12:37:11 +00:00
release."1.13.0".sha256 = "sha256-EzNKR/JzM8T17sMhPhgZNs14e50X4dY3OwFi133IsT0=";
2021-03-30 08:34:14 +00:00
release."1.12.0".sha256 = "sha256-omsfdc294CxKAHNMMeqJCcVimvyRCHgxcQ4NJOWSfNM=";
2022-06-30 11:40:36 +00:00
releaseRev = v: "mathcomp-odd-order.${v}";
2021-03-30 08:34:14 +00:00
inherit version;
defaultVersion = with lib.versions; lib.switch mathcomp.character.version [
2022-06-30 11:40:36 +00:00
{ case = (range "1.13.0" "1.15.0"); out = "1.14.0"; }
2022-02-01 12:37:11 +00:00
{ case = (range "1.12.0" "1.14.0"); out = "1.13.0"; }
2021-10-28 14:17:24 +00:00
{ case = (range "1.10.0" "1.12.0"); out = "1.12.0"; }
2021-03-30 08:34:14 +00:00
] null;
propagatedBuildInputs = [
mathcomp.character
mathcomp.ssreflect
mathcomp.fingroup
mathcomp.algebra
mathcomp.solvable
mathcomp.field
mathcomp.all
];
2021-03-30 08:34:14 +00:00
meta = with lib; {
2021-03-30 08:34:14 +00:00
description = "Formal proof of the Odd Order Theorem";
maintainers = with maintainers; [ siraben ];
license = licenses.cecill-b;
platforms = platforms.unix;
};
}