about summary refs log tree commit diff
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmermann@inria.fr>2021-10-18 11:42:52 +0200
committerThéo Zimmermann <theo.zimmermann@inria.fr>2021-10-18 11:42:52 +0200
commit8797af5eb7d2df20ca6447c29a8e8a96ba84d9e5 (patch)
tree3aff0e0d1e73c68833a4467623e928d139a24b93 /pkgs/development/coq-modules
parent589393a08b6cb8c938597bb8b12a541cc0926855 (diff)
coqPackages.gaia-hydras: init at 0.5
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/gaia-hydras/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/coq-modules/gaia-hydras/default.nix b/pkgs/development/coq-modules/gaia-hydras/default.nix
new file mode 100644
index 0000000000000..c20c503d73ba5
--- /dev/null
+++ b/pkgs/development/coq-modules/gaia-hydras/default.nix
@@ -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;
+  };
+}