about summary refs log tree commit diff
path: root/pkgs/applications/graphics/jpegrescan
diff options
context:
space:
mode:
authorRick van Schijndel <Mindavi@users.noreply.github.com>2022-04-05 09:34:48 +0200
committerGitHub <noreply@github.com>2022-04-05 10:34:48 +0300
commit9f98b2bd7c6d53ee222649f578f20e6ee984bda1 (patch)
treefb8bd6cb34040ba6b15dc3bd0abe4d8750bb81da /pkgs/applications/graphics/jpegrescan
parentd396c7d31608221bcd267ce55c2cb863407b028f (diff)
makeWrapper to nativeBuildInputs (#167225)
Diffstat (limited to 'pkgs/applications/graphics/jpegrescan')
-rw-r--r--pkgs/applications/graphics/jpegrescan/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/jpegrescan/default.nix b/pkgs/applications/graphics/jpegrescan/default.nix
index 1a7320bf6930e..f96742e6c067b 100644
--- a/pkgs/applications/graphics/jpegrescan/default.nix
+++ b/pkgs/applications/graphics/jpegrescan/default.nix
@@ -28,8 +28,12 @@ stdenv.mkDerivation rec {
 
   propagatedBuildInputs = [ perlPackages.FileSlurp ];
 
+  nativeBuildInputs = [
+    makeWrapper
+  ];
+
   buildInputs = [
-    perl libjpeg_turbo makeWrapper
+    perl libjpeg_turbo
   ];
 
   meta = with lib; {