summaryrefslogtreecommitdiffstats
path: root/pkgs/development/coq-modules
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-12 22:12:25 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-07-16 22:04:25 +0700
commit7ded69f4c413d477a5c94b6c6fd3813893cca693 (patch)
tree3a9bbba0c56c241b2c368c17280ceb0ac5bc0c67 /pkgs/development/coq-modules
parentad1437bb6dd6e2ef102ed0258107f463a7d0cc94 (diff)
coqPackages.hierarchy-builder: 1.0.0 -> 1.1.0
Diffstat (limited to 'pkgs/development/coq-modules')
-rw-r--r--pkgs/development/coq-modules/hierarchy-builder/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/coq-modules/hierarchy-builder/default.nix b/pkgs/development/coq-modules/hierarchy-builder/default.nix
index dabcc44261b5..491ff959eced 100644
--- a/pkgs/development/coq-modules/hierarchy-builder/default.nix
+++ b/pkgs/development/coq-modules/hierarchy-builder/default.nix
@@ -5,9 +5,10 @@ with lib; mkCoqDerivation {
owner = "math-comp";
inherit version;
defaultVersion = with versions; switch coq.coq-version [
- { case = isGe "8.12"; out = "1.0.0"; }
+ { case = isGe "8.12"; out = "1.1.0"; }
{ case = range "8.11" "8.12"; out = "0.10.0"; }
] null;
+ release."1.1.0".sha256 = "sha256-spno5ty4kU4WWiOfzoqbXF8lWlNSlySWcRReR3zE/4Q=";
release."1.0.0".sha256 = "0yykygs0z6fby6vkiaiv3azy1i9yx4rqg8xdlgkwnf2284hffzpp";
release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h";
releaseRev = v: "v${v}";
@@ -16,11 +17,14 @@ with lib; mkCoqDerivation {
propagatedBuildInputs = [ coq-elpi ];
+ mlPlugin = true;
+
+ installFlags = [ "DESTDIR=$(out)" "COQMF_COQLIB=lib/coq/${coq.coq-version}" ];
extraInstallFlags = [ "VFILES=structures.v" ];
meta = {
- description = "Coq plugin embedding ELPI.";
- maintainers = [ maintainers.cohencyril ];
- license = licenses.lgpl21;
+ description = "High level commands to declare a hierarchy based on packed classes";
+ maintainers = with maintainers; [ cohencyril siraben ];
+ license = licenses.mit;
};
}