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-06-21 20:13:45 +02:00
|
|
|
name = "zvbi-0.2.8";
|
2004-01-25 09:51:03 +01:00
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/zvbi-0.2.8.tar.bz2;
|
2004-06-21 20:13:45 +02:00
|
|
|
md5 = "8701d3e4387cd896ff8b68831b57d814";
|
2004-01-25 09:51:03 +01:00
|
|
|
};
|
2004-04-01 21:11:59 +02:00
|
|
|
buildInputs = [x11 (if pngSupport then libpng else null)];
|
|
|
|
inherit pngSupport;
|
2004-01-25 09:51:03 +01:00
|
|
|
}
|