summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-12-31 13:25:47 -0500
committerGitHub <noreply@github.com>2019-12-31 13:25:47 -0500
commit13b0141486c3eecfcd63f97625f7d1348101e317 (patch)
tree26589f540241f2e7e39caf064d48960577ccc18a /pkgs/shells
parentddce47c38e4415d3c6e8ca8c30f6477eed149066 (diff)
downloadnixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar.gz
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar.bz2
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar.lz
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar.xz
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.tar.zst
nixpkgs-13b0141486c3eecfcd63f97625f7d1348101e317.zip
powershell: set shellPath
Fixes #45830
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/powershell/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index 6ec2319a49d..faab933ae25 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -44,4 +44,8 @@ stdenv.mkDerivation rec {
     license = with licenses; [ mit ];
   };
 
+  passthru = { 
+    shellPath = "/bin/pwsh"; 
+  };
+
 }