summary refs log tree commit diff
path: root/pkgs/development/web/wml
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-08-15 06:40:21 +0300
committerArtturin <Artturin@artturin.com>2022-08-16 13:14:19 +0300
commitc6568adb005175fb77ef94fee09aa4e8cc248a60 (patch)
tree91a150d7e3f24f50fbf07b1f44b9bb19c95b6743 /pkgs/development/web/wml
parent2f27d033805fdb0b619bad6316d6228662947712 (diff)
treewide: makeWrapper buildInputs to nativeBuildInputs
most found with https://github.com/siraben/nix-lint
Diffstat (limited to 'pkgs/development/web/wml')
-rw-r--r--pkgs/development/web/wml/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/web/wml/default.nix b/pkgs/development/web/wml/default.nix
index ff3d20f16dabb..57892920c8d79 100644
--- a/pkgs/development/web/wml/default.nix
+++ b/pkgs/development/web/wml/default.nix
@@ -23,8 +23,9 @@ perlPackages.buildPerlPackage {
     sed -i '/p2_mp4h\/doc/d' Makefile.in
   '';
 
+  nativeBuildInputs = [ makeWrapper ];
   buildInputs = with perlPackages;
-    [ perl TermReadKey GD BitVector ncurses lynx makeWrapper ImageSize ];
+    [ perl TermReadKey GD BitVector ncurses lynx ImageSize ];
 
   patches = [ ./redhat-with-thr.patch ./dynaloader.patch ./no_bitvector.patch ];