nixpkgs/pkgs/applications/video/mythtv/default.nix
Eelco Dolstra 34326de3c2 * MythTV now installs properly, but it doesn't work yet since Qt has
to be built with MySql client support.

svn path=/nixpkgs/trunk/; revision=2078
2005-01-20 22:07:08 +00:00

17 lines
393 B
Nix

{stdenv, fetchurl, which, qt3, x11, libXinerama, libXv, libXxf86vm, lame}:
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;
}