nixpkgs-suyu/pkgs/development/coq-modules/gappalib/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 Normal View History

2020-08-28 23:05:46 +02:00
{ which, lib, mkCoqDerivation, autoconf, coq, flocq, version ? null }:
mkCoqDerivation {
2020-08-28 23:05:46 +02:00
pname = "gappalib";
repo = "coq";
owner = "gappa";
domain = "gitlab.inria.fr";
inherit version;
2023-11-13 17:35:17 +01:00
defaultVersion = if lib.versions.range "8.8" "8.18" coq.coq-version then "1.5.4" else null;
release."1.5.4".sha256 = "sha256-9PlkXqCu4rbFD7qnMF1GSpPCVmwJ3r593RfAvkJbbdA=";
2023-06-07 10:35:09 +02:00
release."1.5.3".sha256 = "sha256-SuMopX5sm4jh2uBuE7zr6vhWhHYZYnab+epjqYJqg+s=";
2022-09-10 14:29:01 +02:00
release."1.5.2".sha256 = "sha256-A021Bhqz5r2CZBayfjIiWrCIfUlejcQAfbTmOaf6QTM=";
2022-04-05 07:31:41 +02:00
release."1.5.1".sha256 = "1806bq1z6q5rq2ma7d5kfbqfyfr755hjg0dq7b2llry8fx9cxjsg";
2021-09-27 07:45:58 +02:00
release."1.5.0".sha256 = "1i1c0gakffxqqqqw064cbvc243yl325hxd50jmczr6mk18igk41n";
2020-08-28 23:05:46 +02:00
release."1.4.5".sha256 = "081hib1d9wfm29kis390qsqch8v6fs3q71g2rgbbzx5y5cf48n9k";
release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l";
releaseRev = v: "gappalib-coq-${v}";
nativeBuildInputs = [ autoconf ];
2020-08-28 23:05:46 +02:00
mlPlugin = true;
propagatedBuildInputs = [ flocq ];
2020-08-28 23:05:46 +02:00
useMelquiondRemake.logpath = "Gappa";
meta = with lib; {
description = "Coq support library for Gappa";
2020-08-28 23:05:46 +02:00
license = licenses.lgpl21;
maintainers = [ maintainers.vbgl ];
};
}