nixpkgs/pkgs/development/coq-modules/tlc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2020-08-28 21:05:46 +00:00
{ lib, mkCoqDerivation, coq, version ? null }:
(mkCoqDerivation {
2020-08-28 21:05:46 +00:00
pname = "tlc";
owner = "charguer";
inherit version;
displayVersion = { tlc = false; };
defaultVersion = with lib.versions; lib.switch coq.coq-version [
2022-06-03 11:31:21 +00:00
{ case = range "8.13" "8.16"; out = "20211215"; }
2021-04-18 04:12:16 +00:00
{ case = range "8.12" "8.13"; out = "20210316"; }
2020-08-28 21:05:46 +00:00
{ case = range "8.10" "8.12"; out = "20200328"; }
{ case = range "8.6" "8.12"; out = "20181116"; }
] null;
2022-04-19 15:42:22 +00:00
release."20211215".sha256 = "sha256:0m4d4jhdcyq8p2gpz9j3nd6jqzmz2bjmbpc0q06b38b8i550mamp";
2021-04-18 04:12:16 +00:00
release."20210316".sha256 = "1hlavnx20lxpf2iydbbxqmim9p8wdwv4phzp9ypij93yivih0g4a";
2020-08-28 21:05:46 +00:00
release."20200328".sha256 = "16vzild9gni8zhgb3qhmka47f8zagdh03k6nssif7drpim8233lx";
release."20181116".sha256 = "032lrbkxqm9d3fhf6nv1kq2z0mqd3czv3ijlbsjwnfh12xck4vpl";
meta = with lib; {
homepage = "http://www.chargueraud.org/softs/tlc/";
description = "A non-constructive library for Coq";
2020-08-28 21:05:46 +00:00
license = licenses.free;
maintainers = [ maintainers.vbgl ];
};
2021-04-18 04:12:16 +00:00
}).overrideAttrs (x:
lib.optionalAttrs (lib.versionOlder x.version "20210316") {
2021-04-18 04:12:16 +00:00
installFlags = [ "CONTRIB=$(out)/lib/coq/${coq.coq-version}/user-contrib" ];
}
)