nixpkgs/pkgs/applications/graphics/pqiv/default.nix
Michael Raskin b51a1937b6 Fix pqiv unpack step
svn path=/nixpkgs/trunk/; revision=20124
2010-02-19 09:58:37 +00:00

27 lines
684 B
Nix

{ stdenv, fetchurl, getopt, which, pkgconfig, gtk } :
stdenv.mkDerivation (rec {
name = "pqiv-0.8";
src = fetchurl {
url = "http://www.pberndt.com/raw/Programme/Linux/pqiv/_download/${name}.tbz";
sha256 = "365332bab4b13ca56da6935e7155af20658e67d323808942dce23e880466f66d";
};
buildInputs = [ getopt which pkgconfig gtk ];
preConfigure=''
substituteInPlace configure --replace /bin/bash "$shell"
sed -i -e 's|$(tempfile -s.*)|temp.c|' -e 's|tempfile|mktemp|' configure
'';
unpackCmd = ''
tar -xf ${src}
'';
meta = {
description = "Rewrite of qiv (quick image viewer)";
homepage = http://www.pberndt.com/Programme/Linux/pqiv;
};
})