2004-01-25 08:51:03 +00:00
|
|
|
{ pngSupport ? true
|
|
|
|
, stdenv, fetchurl, x11, libpng ? null}:
|
|
|
|
|
2004-03-29 10:25:25 +00:00
|
|
|
assert x11 != null;
|
|
|
|
assert pngSupport -> libpng != null;
|
2004-01-25 08:51:03 +00:00
|
|
|
|
2004-03-29 17:23:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2006-08-11 22:26:55 +00:00
|
|
|
name = "zvbi-0.2.12";
|
2004-01-25 08:51:03 +00:00
|
|
|
src = fetchurl {
|
2007-08-27 13:01:33 +00:00
|
|
|
url = mirror://sourceforge/zapping/zvbi-0.2.22.tar.bz2;
|
2006-08-11 22:26:55 +00:00
|
|
|
md5 = "a01cbe39a48579ba92582ff75a5e37c2";
|
2004-01-25 08:51:03 +00:00
|
|
|
};
|
2004-04-01 19:11:59 +00:00
|
|
|
buildInputs = [x11 (if pngSupport then libpng else null)];
|
|
|
|
inherit pngSupport;
|
2004-01-25 08:51:03 +00:00
|
|
|
}
|