3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/coq-modules/hydra-battles/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

2021-08-17 09:25:41 +01:00
{ lib, mkCoqDerivation, coq, equations, version ? null }:
2021-05-08 17:55:56 +01:00
with lib;
mkCoqDerivation {
pname = "hydra-battles";
owner = "coq-community";
2021-08-17 09:25:41 +01:00
release."0.4".sha256 = "sha256:1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
releaseRev = (v: "v${v}");
2021-05-08 17:55:56 +01:00
inherit version;
defaultVersion = with versions; switch coq.coq-version [
2021-08-17 09:25:41 +01:00
{ case = isGe "8.11"; out = "0.4"; }
2021-05-08 17:55:56 +01:00
] null;
2021-08-17 09:25:41 +01:00
propagatedBuildInputs = [ equations ];
useDune2 = true;
2021-05-08 17:55:56 +01:00
meta = {
2021-08-17 09:25:41 +01:00
description = "Exploration of some properties of Kirby and Paris' hydra battles, with the help of Coq";
2021-05-08 17:55:56 +01:00
longDescription = ''
2021-08-17 09:25:41 +01:00
An exploration of some properties of Kirby and Paris' hydra
battles, with the help of the Coq Proof assistant. This
development includes the study of several representations of
ordinal numbers, and a part of the so-called Ketonen and Solovay
machinery (combinatorial properties of epsilon0).
2021-05-08 17:55:56 +01:00
'';
2021-08-17 09:25:41 +01:00
maintainers = with maintainers; [ siraben Zimmi48 ];
2021-05-08 17:55:56 +01:00
license = licenses.mit;
platforms = platforms.unix;
};
}