mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
23 lines
672 B
Nix
23 lines
672 B
Nix
{ lib, mkCoqDerivation, coq, mathcomp-ssreflect, version ? null }:
|
|
|
|
mkCoqDerivation {
|
|
pname = "autosubst";
|
|
|
|
release."1.7".rev = "v1.7";
|
|
release."1.7".sha256 = "sha256-qoyteQ5W2Noxf12uACOVeHhPLvgmTzrvEo6Ts+FKTGI=";
|
|
|
|
inherit version;
|
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
|
{ case = range "8.10" "8.16"; out = "1.7"; }
|
|
] null;
|
|
|
|
propagatedBuildInputs = [ mathcomp-ssreflect ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.ps.uni-saarland.de/autosubst/";
|
|
description = "Automation for de Bruijn syntax and substitution in Coq";
|
|
maintainers = with maintainers; [ siraben jwiegley ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|