summaryrefslogtreecommitdiff
path: root/pkgs/development/coq-modules/autosubst/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/coq-modules/autosubst/default.nix')
-rw-r--r--pkgs/development/coq-modules/autosubst/default.nix25
1 files changed, 13 insertions, 12 deletions
diff --git a/pkgs/development/coq-modules/autosubst/default.nix b/pkgs/development/coq-modules/autosubst/default.nix
index b2609d5dfc32..a5f7cbb2f0b1 100644
--- a/pkgs/development/coq-modules/autosubst/default.nix
+++ b/pkgs/development/coq-modules/autosubst/default.nix
@@ -1,22 +1,23 @@
-{ lib, mkCoqDerivation, coq, mathcomp, version ? null }:
+{ lib, mkCoqDerivation, coq, mathcomp-ssreflect, version ? null }:
+with lib;
-with lib; mkCoqDerivation {
- pname = "autosubst";
- owner = "uds-psl";
- inherit version;
- defaultVersion = with versions;
- if range "8.5" "8.7" coq.coq-version then "5b40a32e" else null;
+mkCoqDerivation {
+ pname = "autosubst";
- release."5b40a32e".rev = "1c3bb3bbf5477e3b33533a0fc090399f45fe3034";
- release."5b40a32e".sha256 = "1wqfzc9az85fvx71xxfii502jgc3mp0r3xwfb8vnb03vkk625ln0";
+ release."1.7".rev = "v1.7";
+ release."1.7".sha256 = "sha256-qoyteQ5W2Noxf12uACOVeHhPLvgmTzrvEo6Ts+FKTGI=";
- propagatedBuildInputs = [ mathcomp.ssreflect ];
+ inherit version;
+ defaultVersion = with versions; switch coq.coq-version [
+ { case = isGe "8.10"; out = "1.7"; }
+ ] null;
- patches = [./0001-changes-to-work-with-Coq-8.6.patch];
+ propagatedBuildInputs = [ mathcomp-ssreflect ];
meta = {
homepage = "https://www.ps.uni-saarland.de/autosubst/";
description = "Automation for de Bruijn syntax and substitution in Coq";
- maintainers = with maintainers; [ jwiegley ];
+ maintainers = with maintainers; [ siraben jwiegley ];
+ license = licenses.mit;
};
}