nixpkgs/pkgs/applications/video/mythtv/default.nix

19 lines
439 B
Nix
Raw Normal View History

{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;
}