ab71280823
mate.mate-desktop: https://hydra.nixos.org/build/61110037 gdmap: https://hydra.nixos.org/build/61144743 redsocks: https://hydra.nixos.org/build/61123106 resolv_wrapper: https://hydra.nixos.org/build/61121132 ogmtools: https://hydra.nixos.org/build/61108726 mp3info: https://hydra.nixos.org/build/61139015 lxappearance-gtk3: https://hydra.nixos.org/build/61126327 hdf5-fortran: https://hydra.nixos.org/build/61146631 pqiv: https://hydra.nixos.org/build/61124724
27 lines
674 B
Nix
27 lines
674 B
Nix
{ stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk2 } :
|
|
|
|
stdenv.mkDerivation (rec {
|
|
name = "pqiv-${version}";
|
|
version = "2.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillipberndt";
|
|
repo = "pqiv";
|
|
rev = version;
|
|
sha256 = "1xncf6aq52zpxpmz3ikmlkinz7y3nmbpgfxjb7q40sqs00n0mfsd";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ getopt which gtk2 ];
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Rewrite of qiv (quick image viewer)";
|
|
homepage = http://www.pberndt.com/Programme/Linux/pqiv;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.ndowens ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|