2021-05-09 17:25:47 +01:00
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp-ssreflect, version ? null }:
|
|
|
|
with lib;
|
2017-07-11 02:15:14 +01:00
|
|
|
|
2021-05-09 17:25:47 +01:00
|
|
|
mkCoqDerivation {
|
|
|
|
pname = "autosubst";
|
2017-07-11 02:15:14 +01:00
|
|
|
|
2021-05-09 17:25:47 +01:00
|
|
|
release."1.7".rev = "v1.7";
|
|
|
|
release."1.7".sha256 = "sha256-qoyteQ5W2Noxf12uACOVeHhPLvgmTzrvEo6Ts+FKTGI=";
|
2017-07-11 02:15:14 +01:00
|
|
|
|
2021-05-09 17:25:47 +01:00
|
|
|
inherit version;
|
|
|
|
defaultVersion = with versions; switch coq.coq-version [
|
|
|
|
{ case = isGe "8.10"; out = "1.7"; }
|
|
|
|
] null;
|
2017-07-11 02:15:14 +01:00
|
|
|
|
2021-05-09 17:25:47 +01:00
|
|
|
propagatedBuildInputs = [ mathcomp-ssreflect ];
|
2017-07-11 02:15:14 +01:00
|
|
|
|
2020-08-28 22:05:46 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.ps.uni-saarland.de/autosubst/";
|
2017-07-11 02:15:14 +01:00
|
|
|
description = "Automation for de Bruijn syntax and substitution in Coq";
|
2021-05-09 17:25:47 +01:00
|
|
|
maintainers = with maintainers; [ siraben jwiegley ];
|
|
|
|
license = licenses.mit;
|
2017-07-11 02:15:14 +01:00
|
|
|
};
|
|
|
|
}
|