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 {
|
2006-08-12 00:26:55 +02:00
|
|
|
name = "zvbi-0.2.12";
|
2004-01-25 09:51:03 +01:00
|
|
|
src = fetchurl {
|
2006-10-12 15:50:54 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/zvbi-0.2.22.tar.bz2;
|
2006-08-12 00:26:55 +02:00
|
|
|
md5 = "a01cbe39a48579ba92582ff75a5e37c2";
|
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
|
|
|
}
|