pqiv: remove unneded native build inputs

This commit is contained in:
Orivej Desh 2017-12-15 16:39:28 +00:00
parent 28f49e86f9
commit 884b748ceb

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk3, { stdenv, fetchFromGitHub, pkgconfig
ffmpeg, imagemagick, libarchive, libspectre, libwebp, poppler , ffmpeg, gtk3, imagemagick, libarchive, libspectre, libwebp, poppler
}: }:
stdenv.mkDerivation (rec { stdenv.mkDerivation (rec {
@ -14,10 +14,7 @@ stdenv.mkDerivation (rec {
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ buildInputs = [ ffmpeg gtk3 imagemagick libarchive libspectre libwebp poppler ];
getopt which gtk3
ffmpeg imagemagick libarchive libspectre libwebp poppler
];
prePatch = "patchShebangs ."; prePatch = "patchShebangs .";