linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / coq-modules / gappalib / default.nix
bloba835d53fdedbbeb18f29c0926324aefe5918c9cb
1 { which, lib, mkCoqDerivation, autoconf, coq, flocq, version ? null }:
3 with lib; mkCoqDerivation {
4   pname = "gappalib";
5   repo = "coq";
6   owner = "gappa";
7   domain = "gitlab.inria.fr";
8   inherit version;
9   defaultVersion = if versions.isGe "8.8" coq.coq-version then "1.4.5" else null;
10   release."1.4.5".sha256 = "081hib1d9wfm29kis390qsqch8v6fs3q71g2rgbbzx5y5cf48n9k";
11   release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l";
12   releaseRev = v: "gappalib-coq-${v}";
14   nativeBuildInputs = [ which autoconf ];
15   mlPlugin = true;
16   propagatedBuildInputs = [ flocq ];
17   useMelquiondRemake.logpath = "Gappa";
19   meta = {
20     description = "Coq support library for Gappa";
21     license = licenses.lgpl21;
22     maintainers = [ maintainers.vbgl ];
23   };