about summary refs log tree commit diff
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-15 10:53:53 +0100
committerGitHub <noreply@github.com>2021-01-15 10:53:53 +0100
commit65aca46e9e300b7f8d4451926449283b82330b41 (patch)
tree07ae648cd72cc0e0708229f83f1f61fbba5e8130 /pkgs/development/coq-modules
parentebd22859f2a352678563a0bbc54be654945a8a59 (diff)
parentf06be1bcf9582015dcfdfad84fa77279ff54009f (diff)
downloadnixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar.gz
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar.bz2
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar.lz
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar.xz
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.tar.zst
nixlib-65aca46e9e300b7f8d4451926449283b82330b41.zip
Merge pull request #109330 from CohenCyril/mathcomp-abel
coqPackages.mathcomp-abel: init at 1.0.0
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/mathcomp-abel/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/coq-modules/mathcomp-abel/default.nix b/pkgs/development/coq-modules/mathcomp-abel/default.nix
new file mode 100644
index 000000000000..2a8c006b27cb
--- /dev/null
+++ b/pkgs/development/coq-modules/mathcomp-abel/default.nix
@@ -0,0 +1,23 @@
+{ coq, mkCoqDerivation, mathcomp, mathcomp-real-closed, lib, version ? null }:
+
+mkCoqDerivation {
+
+  namePrefix = [ "coq" "mathcomp" ];
+  pname = "abel";
+  owner = "math-comp";
+
+  release."1.0.0".sha256 = "190jd8hb8anqsvr9ysr514pm5sh8qhw4030ddykvwxx9d9q6rbp3";
+
+  inherit version;
+  defaultVersion = with lib; with versions; switch [ coq.version mathcomp.version ]  [
+      { cases = [ (range "8.10" "8.13") (range "1.11.0" "1.12.0") ]; out = "1.0.0"; }
+    ] null;
+
+  propagatedBuildInputs = [ mathcomp.field mathcomp-real-closed ];
+
+  meta = with lib; {
+    description = "Abel - Galois and Abel - Ruffini Theorems";
+    license = licenses.cecill-b;
+    maintainers = [ maintainers.cohencyril ];
+  };
+}