* Update Zapping to 0.9.6.

svn path=/nixpkgs/trunk/; revision=3991
This commit is contained in:
Eelco Dolstra
2005-10-02 15:48:06 +00:00
parent 33ddaafc57
commit 38c5663acb
4 changed files with 11 additions and 25 deletions

View File

@@ -1,9 +0,0 @@
. $stdenv/setup
configureScript=configure
configure() {
# !!! hack: configure returns non-zero even on success.
./configure $configureFlags || true
}
genericBuild

View File

@@ -1,10 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "rte-0.5.2";
builder = ./builder.sh;
name = "rte-0.5.6";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/rte-0.5.2.tar.bz2;
md5 = "152d5d81169f0c9a543078543e354ebe";
url = http://heanet.dl.sourceforge.net/sourceforge/zapping/rte-0.5.6.tar.bz2;
md5 = "6259cdff255af71c23a4576e7c5664a0";
};
}

View File

@@ -5,10 +5,10 @@ assert x11 != null;
assert pngSupport -> libpng != null;
stdenv.mkDerivation {
name = "zvbi-0.2.8";
name = "zvbi-0.2.16";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/zvbi-0.2.8.tar.bz2;
md5 = "8701d3e4387cd896ff8b68831b57d814";
url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zvbi-0.2.16.tar.bz2;
md5 = "6ed822ae5d0766129bfa1508394b6ac0";
};
buildInputs = [x11 (if pngSupport then libpng else null)];
inherit pngSupport;