summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorEvils <evils.devils@protonmail.com>2020-06-05 23:52:09 +0200
committerJon <jonringer@users.noreply.github.com>2020-06-05 15:40:12 -0700
commit98ddb40d177187a787618a9c159bb3f1a9dda36e (patch)
treee887f0c9533d90b8ea6834c0fe173db322208dd7 /pkgs/shells/powershell
parent79b919e75b4e24a31a86843d2a492733033485e5 (diff)
downloadnixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar.gz
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar.bz2
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar.lz
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar.xz
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.tar.zst
nixpkgs-98ddb40d177187a787618a9c159bb3f1a9dda36e.zip
powershell: installCheck -> installCheckPhase
Diffstat (limited to 'pkgs/shells/powershell')
-rw-r--r--pkgs/shells/powershell/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index 58c18fb695b..d9374498774 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
   dontStrip = true;
 
   doInstallCheck = true;
-  installCheck = ''
+  installCheckPhase = ''
     $out/bin/pwsh --help > /dev/null
   '';