about summary refs log tree commit diff
path: root/pkgs/applications/editors/netbeans
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-02-07 16:17:39 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-02-19 20:09:16 +0700
commite03c068af5c9ca950214cd6c3b5cfe67f595da88 (patch)
tree3a2072763efa4dae7237eeecf46fc6a95ddcd215 /pkgs/applications/editors/netbeans
parent06c2bba257d77f2aeada7f943244d9afd5998645 (diff)
downloadnixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar.gz
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar.bz2
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar.lz
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar.xz
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.tar.zst
nixlib-e03c068af5c9ca950214cd6c3b5cfe67f595da88.zip
treewide: makeWrapper buildInputs to nativeBuildInputs
Diffstat (limited to 'pkgs/applications/editors/netbeans')
-rw-r--r--pkgs/applications/editors/netbeans/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/netbeans/default.nix b/pkgs/applications/editors/netbeans/default.nix
index 9206b296b9ac..f968b85c6ff1 100644
--- a/pkgs/applications/editors/netbeans/default.nix
+++ b/pkgs/applications/editors/netbeans/default.nix
@@ -56,7 +56,8 @@ stdenv.mkDerivation {
     ln -s ${desktopItem}/share/applications/* $out/share/applications
   '';
 
-  buildInputs = [ makeWrapper perl python unzip libicns imagemagick ];
+  nativeBuildInputs = [ makeWrapper ];
+  buildInputs = [ perl python unzip libicns imagemagick ];
 
   meta = {
     description = "An integrated development environment for Java, C, C++ and PHP";