01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
29 lines
744 B
Nix
29 lines
744 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig
|
|
, ffmpeg_3, gtk3, imagemagick, libarchive, libspectre, libwebp, poppler
|
|
}:
|
|
|
|
stdenv.mkDerivation (rec {
|
|
pname = "pqiv";
|
|
version = "2.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillipberndt";
|
|
repo = "pqiv";
|
|
rev = version;
|
|
sha256 = "06cwm28b7j1skwp21s5snmj1pqh3xh6y2i5v4w3pz0b8k3053h9i";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ ffmpeg_3 gtk3 imagemagick libarchive libspectre libwebp poppler ];
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Powerful image viewer with minimal UI";
|
|
homepage = "http://www.pberndt.com/Programme/Linux/pqiv";
|
|
license = licenses.gpl3;
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|