summaryrefslogtreecommitdiffstats
path: root/pkgs/development/coq-modules/hierarchy-builder
diff options
context:
space:
mode:
authorCyril Cohen <cohen@crans.org>2021-02-19 19:34:30 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-12 06:11:43 +0200
commit7e589a45ef86abf9a6a737d9730925b81ee663b4 (patch)
treeeda31fd68603f623bdbb845f091a7e1c03b663d3 /pkgs/development/coq-modules/hierarchy-builder
parenta34b9c1f1cac783ca27ac2ee8bb63beb7b915287 (diff)
coqPackages: etc
- use propagatedBuildInputs to make sure ocaml plugin stuff is in path - updated coqPackage.heq (broken url) - fixed use of `DESTDIR` and `COQMF_COQLIB` in mkCoqDerivation - adding `COQCORELIB` environement variable to put ocaml plugin files in the right place - make metaFetch available from `coqPackages`
Diffstat (limited to 'pkgs/development/coq-modules/hierarchy-builder')
-rw-r--r--pkgs/development/coq-modules/hierarchy-builder/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/coq-modules/hierarchy-builder/default.nix b/pkgs/development/coq-modules/hierarchy-builder/default.nix
index c0fa2d7c8e00..6f15fc80388e 100644
--- a/pkgs/development/coq-modules/hierarchy-builder/default.nix
+++ b/pkgs/development/coq-modules/hierarchy-builder/default.nix
@@ -1,4 +1,4 @@
-{ lib, mkCoqDerivation, which, coq, coq-elpi, version ? null }:
+{ lib, mkCoqDerivation, coq, coq-elpi, version ? null }:
with lib; let hb = mkCoqDerivation {
pname = "hierarchy-builder";
@@ -17,13 +17,10 @@ with lib; let hb = mkCoqDerivation {
release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h";
releaseRev = v: "v${v}";
- extraNativeBuildInputs = [ which ];
-
propagatedBuildInputs = [ coq-elpi ];
mlPlugin = true;
- installFlags = [ "DESTDIR=$(out)" "COQMF_COQLIB=lib/coq/${coq.coq-version}" ];
extraInstallFlags = [ "VFILES=structures.v" ];
meta = {