aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix b/infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix
new file mode 100644
index 000000000000..73e420b326d9
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/coq-modules/math-classes/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, coq, bignums }:
+
+stdenv.mkDerivation rec {
+
+ name = "coq${coq.coq-version}-math-classes-${version}";
+ version = "8.11.0";
+
+ src = fetchFromGitHub {
+ owner = "coq-community";
+ repo = "math-classes";
+ rev = version;
+ sha256 = "1hjgncvm1m46lw6264w4dqsy8dbh74vhmzq52x0fba2yqlvy94sf";
+ };
+
+ buildInputs = [ coq bignums ];
+ enableParallelBuilding = true;
+ installFlags = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://math-classes.github.io";
+ description = "A library of abstract interfaces for mathematical structures in Coq.";
+ maintainers = with maintainers; [ siddharthist jwiegley ];
+ platforms = coq.meta.platforms;
+ };
+
+ passthru = {
+ compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" "8.11" ];
+ };
+
+}