about summary refs log tree commit diff
path: root/pkgs/applications/editors/wxhexeditor
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-30 20:11:06 -0500
committerBen Siraphob <bensiraphob@gmail.com>2022-03-30 20:17:24 -0500
commit21faf9fc29b10d0912411d6022751e931b1a8e54 (patch)
tree5b3de5217f3380c9fcc262eb83f3ba33e6f653eb /pkgs/applications/editors/wxhexeditor
parentf5054121cb287317c4ca8c409ef9c68f36658013 (diff)
treewide: move autoconf, automake to nativeBuildInputs
Diffstat (limited to 'pkgs/applications/editors/wxhexeditor')
-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 c769ab4263126..f310fb85a26c6 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 .";