about summary refs log tree commit diff
path: root/pkgs/applications/misc/hello-unfree/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/hello-unfree/default.nix')
-rw-r--r--pkgs/applications/misc/hello-unfree/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/hello-unfree/default.nix b/pkgs/applications/misc/hello-unfree/default.nix
index c055bddec694..1647a09edfd6 100644
--- a/pkgs/applications/misc/hello-unfree/default.nix
+++ b/pkgs/applications/misc/hello-unfree/default.nix
@@ -1,4 +1,4 @@
-{ stdenv }:
+{ stdenv, runtimeShell }:
 
 stdenv.mkDerivation rec {
   name = "example-unfree-package-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir -p $out/bin
     cat > $out/bin/hello-unfree << EOF
-    #!${stdenv.shell}
+    #!${runtimeShell}
     echo "Hello, you are running an unfree system!"
     EOF
     chmod +x $out/bin/hello-unfree