about summary refs log tree commit diff
path: root/pkgs/applications/video/xine-ui/default.nix
blob: a6ce153b558e2aa53777e0652248d3e3d03da783 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, x11, xineLib, libpng}:

stdenv.mkDerivation {
  name = "xine-ui-0.99.4";
  src = fetchurl {
    url = http://surfnet.dl.sourceforge.net/sourceforge/xine/xine-ui-0.99.4.tar.gz;
    md5 = "90ea1f76747e9788a30a73e7f4a76cf6";
  };
  buildInputs = [
    x11 xineLib libpng
    (if xineLib.xineramaSupport then xineLib.libXinerama else null)
  ];
  configureFlags = "--without-readline";
}