about summary refs log tree commit diff
path: root/pkgs/applications/video/mythtv/default.nix
blob: e0c34103ec6df37e4561ded1badc821af6fe46c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{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://www.mythtv.org/mc/mythtv-0.17.tar.bz2;
    md5 = "c996dc690d36e946396fc5cd4b715e3b";
  };

  patches = [./settings.patch];

  buildInputs = [which qt3 x11 libXinerama libXv libXxf86vm lame];
  inherit qt3;
}