mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 17:10:48 +00:00
Merge pull request #142071 from Zimmi48/hydras-0.5
This commit is contained in:
commit
01d46974a3
|
@ -6,12 +6,14 @@ mkCoqDerivation {
|
||||||
pname = "addition-chains";
|
pname = "addition-chains";
|
||||||
repo = "hydra-battles";
|
repo = "hydra-battles";
|
||||||
|
|
||||||
release."0.4".sha256 = "sha256:1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
|
release."0.4".sha256 = "1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
|
||||||
|
release."0.5".sha256 = "121pcbn6v59l0c165ha9n00whbddpy11npx2y9cn7g879sfk2nqk";
|
||||||
releaseRev = (v: "v${v}");
|
releaseRev = (v: "v${v}");
|
||||||
|
|
||||||
inherit version;
|
inherit version;
|
||||||
defaultVersion = with versions; switch coq.coq-version [
|
defaultVersion = with versions; switch coq.coq-version [
|
||||||
{ case = isGe "8.11"; out = "0.4"; }
|
{ case = range "8.13" "8.14"; out = "0.5"; }
|
||||||
|
{ case = range "8.11" "8.12"; out = "0.4"; }
|
||||||
] null;
|
] null;
|
||||||
|
|
||||||
propagatedBuildInputs = [ mathcomp-ssreflect mathcomp-algebra paramcoq ];
|
propagatedBuildInputs = [ mathcomp-ssreflect mathcomp-algebra paramcoq ];
|
||||||
|
|
33
pkgs/development/coq-modules/gaia-hydras/default.nix
Normal file
33
pkgs/development/coq-modules/gaia-hydras/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib, mkCoqDerivation, coq, hydra-battles, gaia, mathcomp-zify, version ? null }:
|
||||||
|
|
||||||
|
with lib; mkCoqDerivation rec {
|
||||||
|
pname = "gaia-hydras";
|
||||||
|
repo = "hydra-battles";
|
||||||
|
|
||||||
|
release."0.5".sha256 = "121pcbn6v59l0c165ha9n00whbddpy11npx2y9cn7g879sfk2nqk";
|
||||||
|
releaseRev = (v: "v${v}");
|
||||||
|
|
||||||
|
inherit version;
|
||||||
|
defaultVersion = with versions; switch coq.coq-version [
|
||||||
|
{ case = range "8.13" "8.14"; out = "0.5"; }
|
||||||
|
] null;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
hydra-battles
|
||||||
|
gaia
|
||||||
|
mathcomp-zify
|
||||||
|
];
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Comparison between ordinals in Gaia and Hydra battles";
|
||||||
|
longDescription = ''
|
||||||
|
The Gaia and Hydra battles projects develop different notions of ordinals.
|
||||||
|
This development bridges the different notions.
|
||||||
|
'';
|
||||||
|
maintainers = with maintainers; [ Zimmi48 ];
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5,12 +5,14 @@ mkCoqDerivation {
|
||||||
pname = "hydra-battles";
|
pname = "hydra-battles";
|
||||||
owner = "coq-community";
|
owner = "coq-community";
|
||||||
|
|
||||||
release."0.4".sha256 = "sha256:1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
|
release."0.4".sha256 = "1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
|
||||||
|
release."0.5".sha256 = "121pcbn6v59l0c165ha9n00whbddpy11npx2y9cn7g879sfk2nqk";
|
||||||
releaseRev = (v: "v${v}");
|
releaseRev = (v: "v${v}");
|
||||||
|
|
||||||
inherit version;
|
inherit version;
|
||||||
defaultVersion = with versions; switch coq.coq-version [
|
defaultVersion = with versions; switch coq.coq-version [
|
||||||
{ case = isGe "8.11"; out = "0.4"; }
|
{ case = range "8.13" "8.14"; out = "0.5"; }
|
||||||
|
{ case = range "8.11" "8.12"; out = "0.4"; }
|
||||||
] null;
|
] null;
|
||||||
|
|
||||||
propagatedBuildInputs = [ equations ];
|
propagatedBuildInputs = [ equations ];
|
||||||
|
|
|
@ -43,6 +43,7 @@ let
|
||||||
flocq = callPackage ../development/coq-modules/flocq {};
|
flocq = callPackage ../development/coq-modules/flocq {};
|
||||||
fourcolor = callPackage ../development/coq-modules/fourcolor {};
|
fourcolor = callPackage ../development/coq-modules/fourcolor {};
|
||||||
gaia = callPackage ../development/coq-modules/gaia {};
|
gaia = callPackage ../development/coq-modules/gaia {};
|
||||||
|
gaia-hydras = callPackage ../development/coq-modules/gaia-hydras {};
|
||||||
gappalib = callPackage ../development/coq-modules/gappalib {};
|
gappalib = callPackage ../development/coq-modules/gappalib {};
|
||||||
goedel = callPackage ../development/coq-modules/goedel {};
|
goedel = callPackage ../development/coq-modules/goedel {};
|
||||||
graph-theory = callPackage ../development/coq-modules/graph-theory {};
|
graph-theory = callPackage ../development/coq-modules/graph-theory {};
|
||||||
|
|
Loading…
Reference in a new issue