454707da23
svn path=/nixpkgs/trunk/; revision=3660
19 lines
428 B
Nix
19 lines
428 B
Nix
{stdenv, fetchurl, which, qt3, x11, libXinerama, libXv, libXxf86vm, lame}:
|
|
|
|
assert qt3.mysqlSupport;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mythtv-0.17";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/mythtv-0.17.tar.bz2;
|
|
md5 = "c996dc690d36e946396fc5cd4b715e3b";
|
|
};
|
|
|
|
patches = [./settings.patch];
|
|
|
|
buildInputs = [which qt3 x11 libXinerama libXv libXxf86vm lame];
|
|
inherit qt3;
|
|
}
|