* Fixed and/or updated some more components. The number of explicit

builders is dropping steadily.

svn path=/nixpkgs/trunk/; revision=900
This commit is contained in:
Eelco Dolstra
2004-04-01 19:11:59 +00:00
parent 7bf54b734e
commit 776554d9e1
37 changed files with 50 additions and 306 deletions
@@ -1,8 +0,0 @@
buildinputs="$pkgconfig $gtk $libpng"
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd gqview-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
@@ -3,18 +3,15 @@
assert pkgconfig != null && gtk != null && libpng != null;
# Note that we cannot just copy gtk's png attribute, since gtk might
# not be linked against png.
assert libpng == gtk.libpng;
# !!! assert libpng == gtk.libpng;
stdenv.mkDerivation {
name = "gqview-1.3.5";
name = "gqview-1.4.1";
builder = ./builder.sh;
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/gqview/gqview-1.3.5.tar.gz;
md5 = "c44687bdd636ea6e5133fb936abf880a";
url = http://heanet.dl.sourceforge.net/sourceforge/gqview/gqview-1.4.1.tar.gz;
md5 = "d963fbb878d78e8ebf78ea8c18caa72f";
};
pkgconfig = pkgconfig;
gtk = gtk;
libpng = libpng;
buildInputs = [pkgconfig gtk libpng];
}