about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-31 03:15:41 -0500
committerGitHub <noreply@github.com>2022-03-31 03:15:41 -0500
commit5187709ff77987d212d0f37b73c9a66d201e7fe6 (patch)
tree63bfa479580ddc30b4ac1726357be8d0bc5a638e /pkgs/applications/editors
parent36436ac2feb0f0e25bda6c40f447066dcece5d38 (diff)
parent21faf9fc29b10d0912411d6022751e931b1a8e54 (diff)
downloadnixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar.gz
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar.bz2
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar.lz
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar.xz
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.tar.zst
nixlib-5187709ff77987d212d0f37b73c9a66d201e7fe6.zip
Merge pull request #166508 from siraben/automake-buildinputs
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/wxhexeditor/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/wxhexeditor/default.nix b/pkgs/applications/editors/wxhexeditor/default.nix
index c769ab426312..f310fb85a26c 100644
--- a/pkgs/applications/editors/wxhexeditor/default.nix
+++ b/pkgs/applications/editors/wxhexeditor/default.nix
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "08xnhaif8syv1fa0k6lc3jm7yg2k50b02lyds8w0jyzh4xi5crqj";
   };
 
-  buildInputs = [ wxGTK autoconf automake libtool python2 gettext ];
+  nativeBuildInputs = [ autoconf automake ];
+  buildInputs = [ wxGTK libtool python2 gettext ];
 
   preConfigure = "patchShebangs .";