ba6f269bf5
* MythTV: the setup program works :-). * Added XmlTV. This requires a huge number of Perl modules, so... * Added a generic builder for Perl modules. I'm lazy so the modules are defined directly in all-packages-generic.nix. The generic builder also patches Perl scripts to include a hard-coded Perl module search path (i.e., similar to an RPATH in ELF executables). svn path=/nixpkgs/trunk/; revision=2083
19 lines
419 B
Nix
19 lines
419 B
Nix
{stdenv, fetchurl, which, qt3, x11, libXinerama, libXv, libXxf86vm, lame}:
|
|
|
|
assert qt3.mysqlSupport;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mythtv-0.16";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.mythtv.org/mc/mythtv-0.16.tar.bz2;
|
|
md5 = "0eba17cf64c96ea3ead23e7e15419cc0";
|
|
};
|
|
|
|
patches = [./settings.patch];
|
|
|
|
buildInputs = [which qt3 x11 libXinerama libXv libXxf86vm lame];
|
|
inherit qt3;
|
|
}
|