summary refs log tree commit diff
path: root/pkgs/shells/powershell/default.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-06-13 23:08:46 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-06-13 23:08:46 +0100
commite5a990a3c2460037694d7673fedffa2555b8780d (patch)
tree05ff733a87f86f7379807fd06e6be2689ba890a0 /pkgs/shells/powershell/default.nix
parent7a0b9139fa56540f6013715ee85eb01d998978b4 (diff)
downloadnixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar.gz
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar.bz2
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar.lz
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar.xz
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.tar.zst
nixpkgs-e5a990a3c2460037694d7673fedffa2555b8780d.zip
powershell: autoPatchelfHook/makeWrapper belongs to nativeBuildInputs
Diffstat (limited to 'pkgs/shells/powershell/default.nix')
-rw-r--r--pkgs/shells/powershell/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index e1596472005..a053884bb88 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -22,7 +22,8 @@ stdenv.mkDerivation rec {
     stripRoot = false;
   };
 
-  buildInputs = [ autoPatchelfHook makeWrapper less ] ++ libraries;
+  buildInputs = [ less ] ++ libraries;
+  nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
 
   # TODO: remove PAGER after upgrading to v6.1.0-preview.1 or later as it has been addressed in
   # https://github.com/PowerShell/PowerShell/pull/6144