3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #24044 from ndowens/pqiv

pqiv: 0.12 -> 2.8.3
This commit is contained in:
Benjamin Staffin 2017-03-19 03:44:24 -04:00 committed by GitHub
commit 3effae81f1

View file

@ -1,26 +1,26 @@
{ stdenv, fetchurl, getopt, which, pkgconfig, gtk2 } :
{ stdenv, fetchFromGitHub, getopt, which, pkgconfig, gtk2 } :
stdenv.mkDerivation (rec {
name = "pqiv-0.12";
name = "pqiv-${version}";
version = "2.8.3";
src = fetchurl {
url = "https://github.com/downloads/phillipberndt/pqiv/${name}.tbz";
sha256 = "646c69f2f4e7289913f6b8e8ae984befba9debf0d2b4cc8af9955504a1fccf1e";
src = fetchFromGitHub {
owner = "phillipberndt";
repo = "pqiv";
rev = version;
sha256 = "0fhmqa1q1y5y0ivrgx9xv864zqvd5dk4fiqi4bgi1ybdfx7vv2fy";
};
buildInputs = [ getopt which pkgconfig gtk2 ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ getopt which gtk2 ];
preConfigure=''
substituteInPlace configure --replace /bin/bash "$shell"
sed -i -e 's|$(tempfile -s.*)|temp.c|' -e 's|tempfile|mktemp|' configure
'';
prePatch = "patchShebangs .";
unpackCmd = ''
tar -xf ${src}
'';
meta = {
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.unix;
};
})