2004-01-25 00:51:03 -08:00
|
|
|
{ teletextSupport ? true
|
|
|
|
, jpegSupport ? true
|
|
|
|
, pngSupport ? true
|
2004-06-21 13:41:32 -07:00
|
|
|
, recordingSupport ? true
|
2004-05-01 11:17:56 -07:00
|
|
|
# !!! libXext shouldn't be necessary (it's in x11); but the builder needs it.
|
2005-10-02 08:48:06 -07:00
|
|
|
, stdenv, fetchurl, pkgconfig, perl, python, x11
|
|
|
|
, libXv, libXmu, libXext, libgnomeui
|
2004-06-21 11:13:45 -07:00
|
|
|
, libglade, scrollkeeper, esound, gettext, perlXMLParser
|
2004-06-21 13:41:32 -07:00
|
|
|
, zvbi ? null, libjpeg ? null, libpng ? null, rte ? null }:
|
2004-01-21 01:34:19 -08:00
|
|
|
|
2004-03-29 02:25:25 -08:00
|
|
|
assert teletextSupport -> zvbi != null && zvbi.pngSupport
|
2004-04-01 11:11:59 -08:00
|
|
|
/* !!! && pngSupport && zvbi.libpng == libpng */;
|
2004-01-25 00:51:03 -08:00
|
|
|
|
2004-03-29 02:25:25 -08:00
|
|
|
assert jpegSupport -> libjpeg != null;
|
|
|
|
assert pngSupport -> libpng != null;
|
2004-01-21 01:34:19 -08:00
|
|
|
|
2004-06-21 13:41:32 -07:00
|
|
|
assert recordingSupport -> rte != null;
|
|
|
|
|
2004-03-29 09:23:01 -08:00
|
|
|
stdenv.mkDerivation {
|
2007-08-08 15:34:50 -07:00
|
|
|
name = "zapping-0.9.6";
|
2004-01-21 01:34:19 -08:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2007-08-27 05:44:01 -07:00
|
|
|
|
2004-01-21 01:34:19 -08:00
|
|
|
src = fetchurl {
|
2007-08-27 05:44:01 -07:00
|
|
|
url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2;
|
2007-08-08 15:34:50 -07:00
|
|
|
md5 = "8306775c6a11de4d72345b5eee970ea6";
|
2004-01-21 01:34:19 -08:00
|
|
|
};
|
|
|
|
|
2005-03-10 04:49:37 -08:00
|
|
|
inherit teletextSupport jpegSupport pngSupport libXext;
|
2004-01-25 00:51:03 -08:00
|
|
|
|
2004-04-01 11:11:59 -08:00
|
|
|
buildInputs = [
|
2005-03-10 04:49:37 -08:00
|
|
|
pkgconfig perl perlXMLParser python x11 libXv libXmu libgnomeui
|
2004-04-01 11:11:59 -08:00
|
|
|
libglade scrollkeeper esound gettext
|
|
|
|
(if teletextSupport then zvbi else null)
|
|
|
|
(if jpegSupport then libjpeg else null)
|
|
|
|
(if pngSupport then libpng else null)
|
2004-06-21 13:41:32 -07:00
|
|
|
(if recordingSupport then rte else null)
|
2004-04-01 11:11:59 -08:00
|
|
|
];
|
2004-01-21 01:34:19 -08:00
|
|
|
}
|