about summary refs log tree commit diff
path: root/pkgs/development/compilers/factor-lang/default.nix
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/development/compilers/factor-lang/default.nix
parent06c2bba257d77f2aeada7f943244d9afd5998645 (diff)
treewide: makeWrapper buildInputs to nativeBuildInputs
Diffstat (limited to 'pkgs/development/compilers/factor-lang/default.nix')
-rw-r--r--pkgs/development/compilers/factor-lang/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/factor-lang/default.nix b/pkgs/development/compilers/factor-lang/default.nix
index fc5f478177cb4..2c9999ccdb490 100644
--- a/pkgs/development/compilers/factor-lang/default.nix
+++ b/pkgs/development/compilers/factor-lang/default.nix
@@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
     ./fuel-dir.patch
   ];
 
-  buildInputs = with xorg; [ git rlwrap curl pkg-config perl makeWrapper
+  nativeBuildInputs = [ makeWrapper ];
+  buildInputs = with xorg; [ git rlwrap curl pkg-config perl
     libX11 pango cairo gtk2 gdk-pixbuf gtkglext
     mesa libXmu libXt libICE libSM openssl unzip ];