about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2019-01-15 23:41:31 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2019-01-16 20:37:15 +0100
commitbcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183 (patch)
tree26aef5b71509a26f7986e6cf9928b7687c21787d /pkgs/development/interpreters
parent3956a8421f2d78bc66ad9d3c23a3b5510bc695be (diff)
downloadnixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar.gz
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar.bz2
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar.lz
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar.xz
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.tar.zst
nixlib-bcf54ce5bbc8c325cfd2b6bcc5cec7661ef49183.zip
treewide: use ${stdenv.shell} instead of /bin/sh where possible
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/guile/2.0.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/guile/2.0.nix b/pkgs/development/interpreters/guile/2.0.nix
index b65dfb1d4a1e..433271d9c85e 100644
--- a/pkgs/development/interpreters/guile/2.0.nix
+++ b/pkgs/development/interpreters/guile/2.0.nix
@@ -115,6 +115,6 @@
 
 (stdenv.lib.optionalAttrs (!stdenv.isLinux) {
   # Work around <https://bugs.gnu.org/14201>.
-  SHELL = "/bin/sh";
-  CONFIG_SHELL = "/bin/sh";
+  SHELL = "${stdenv.shell}";
+  CONFIG_SHELL = "${stdenv.shell}";
 })