summary refs log tree commit diff
path: root/pkgs/applications/video/mythtv/default.nix
blob: e6780722566c90f790dd6eeaccdc59e05c350eb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, which, qt3, x11, libXinerama, libXv, libXxf86vm, lame}:

assert qt3.mysqlSupport;

stdenv.mkDerivation {
  name = "mythtv-0.18.1";

  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.mythtv.org/mc/mythtv-0.18.1.tar.bz2;
    md5 = "e6cabf88feeaf6ae8f830d3fdf7b113d";
  };

  patches = [./settings.patch];
  configureFlags = "--disable-joystick-menu";

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