summary refs log tree commit diff
path: root/pkgs/applications/video/mythtv/default.nix
blob: 67efd0d44c7146d46fe84ec8135a61ba4c0a0927 (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://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;
}