summary refs log tree commit diff
path: root/pkgs/development/coq-modules/trakt/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/coq-modules/trakt/default.nix')
-rw-r--r--pkgs/development/coq-modules/trakt/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/coq-modules/trakt/default.nix b/pkgs/development/coq-modules/trakt/default.nix
new file mode 100644
index 00000000000..671fc401369
--- /dev/null
+++ b/pkgs/development/coq-modules/trakt/default.nix
@@ -0,0 +1,24 @@
+{ lib, mkCoqDerivation, coq, coq-elpi, version ? null }:
+with lib;
+
+mkCoqDerivation {
+  pname = "trakt";
+  owner = "ecranceMERCE";
+
+  release."1.0".rev    = "d1c9daba8fe0584b526047862dd27ddf836dbbf2";
+  release."1.0".sha256 = "sha256-Qhw5fWFYxUFO2kIWWz/og+4fuy9aYG27szfNk3IglhY=";
+
+  inherit version;
+  defaultVersion = with versions; switch [ coq.version ] [
+    { cases = [ (isGe "8.13") ]; out = "1.0"; }
+  ] null;
+
+  propagatedBuildInputs = [ coq-elpi ];
+
+  meta = {
+    description = "A generic goal preprocessing tool for proof automation tactics in Coq";
+    maintainers = with maintainers; [ siraben ];
+    license = licenses.cecill-b;
+    platforms = platforms.unix;
+  };
+}