summary refs log blame commit diff
path: root/pkgs/applications/video/mythtv/default.nix
blob: db08db78268a2e66ac056e4e339ca8328f00a198 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                          

                               


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