mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
454707da23
svn path=/nixpkgs/trunk/; revision=3660
18 lines
428 B
Nix
18 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;
|
|
}
|