about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-12-29 06:01:46 +0000
committerGitHub <noreply@github.com>2022-12-29 06:01:46 +0000
commitdf1fb5ef891623a98cdf7b073e7b93e0d01bc712 (patch)
tree9fcfa7be3d904ad39cb257009df5cf8f47ae6a33 /pkgs/shells
parentf104523dca3d565ee2004b6bce14de6563ae48b0 (diff)
parent290a132ce2613e6c314793aa9166f431bec6953b (diff)
downloadnixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar.gz
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar.bz2
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar.lz
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar.xz
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.tar.zst
nixlib-df1fb5ef891623a98cdf7b073e7b93e0d01bc712.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/dash/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index e9b4093249c5..e6113c0d7696 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--with-libedit" ];
   preConfigure = lib.optional stdenv.hostPlatform.isStatic ''
-    export LIBS="$(pkg-config --libs --static libedit)"
+    export LIBS="$(''${PKG_CONFIG:-pkg-config} --libs --static libedit)"
   '';
 
   enableParallelBuilding = true;