about summary refs log tree commit diff
path: root/pkgs/development/compilers/gerbil/gerbil-support.nix
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-09-25 05:49:25 +0300
committerArtturin <Artturin@artturin.com>2022-09-26 17:53:26 +0300
commit0734f54ef262ad642eec1166a416bae86779ed9f (patch)
tree27314f4f10704420dfba1f529dbc258ca7b58f94 /pkgs/development/compilers/gerbil/gerbil-support.nix
parent6910a4eea0038728a2f10ce84122806f2cb6b170 (diff)
treewide: move pkg-config, autoreconfHook, intltool to nativeBuildInputs
found with nixpkgs-lint
Diffstat (limited to 'pkgs/development/compilers/gerbil/gerbil-support.nix')
-rw-r--r--pkgs/development/compilers/gerbil/gerbil-support.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gerbil/gerbil-support.nix b/pkgs/development/compilers/gerbil/gerbil-support.nix
index 9cb9954544c7e..f51076fd5d4d1 100644
--- a/pkgs/development/compilers/gerbil/gerbil-support.nix
+++ b/pkgs/development/compilers/gerbil/gerbil-support.nix
@@ -24,12 +24,13 @@ rec {
     gerbil ? pkgs.gerbil-unstable,
     gambit-params ? pkgs.gambit-support.stable-params,
     gerbilInputs ? [],
+    nativeBuildInputs ? [],
     buildInputs ? [],
     buildScript ? "./build.ss",
     softwareName ? ""} :
     let buildInputs_ = buildInputs; in
     gccStdenv.mkDerivation rec {
-      inherit src meta pname version;
+      inherit src meta pname version nativeBuildInputs;
       passthru = { inherit gerbil-package version-path ;};
       buildInputs = [ gerbil ] ++ gerbilInputs ++ buildInputs_;
       postPatch = ''