2021-05-20 23:08:51 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp-ssreflect, version ? null }:
|
|
|
|
with lib;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
mkCoqDerivation {
|
|
|
|
pname = "autosubst";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
release."1.7".rev = "v1.7";
|
|
|
|
release."1.7".sha256 = "sha256-qoyteQ5W2Noxf12uACOVeHhPLvgmTzrvEo6Ts+FKTGI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
inherit version;
|
|
|
|
defaultVersion = with versions; switch coq.coq-version [
|
2022-09-09 14:08:57 +00:00
|
|
|
{ case = range "8.10" "8.16"; out = "1.7"; }
|
2021-05-20 23:08:51 +00:00
|
|
|
] null;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [ mathcomp-ssreflect ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
meta = {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://www.ps.uni-saarland.de/autosubst/";
|
|
|
|
description = "Automation for de Bruijn syntax and substitution in Coq";
|
2021-05-20 23:08:51 +00:00
|
|
|
maintainers = with maintainers; [ siraben jwiegley ];
|
|
|
|
license = licenses.mit;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|