2004-01-25 09:51:03 +01:00
|
|
|
{ pngSupport ? true
|
|
|
|
, stdenv, fetchurl, x11, libpng ? null}:
|
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert x11 != null;
|
|
|
|
assert pngSupport -> libpng != null;
|
2004-01-25 09:51:03 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-01-25 09:51:03 +01:00
|
|
|
name = "zvbi-0.2.5";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zvbi-0.2.5.tar.bz2;
|
|
|
|
md5 = "06b370565246758813f6580797369518";
|
|
|
|
};
|
|
|
|
x11 = x11;
|
|
|
|
pngSupport = pngSupport;
|
|
|
|
libpng = if pngSupport then libpng else null;
|
|
|
|
}
|