f6e91bc9c9
svn path=/nixpkgs/trunk/; revision=2397
19 lines
439 B
Nix
19 lines
439 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://catamaran.labs.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;
|
|
}
|