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

stdenv.mkDerivation {
  name = "xine-ui-0.99.5";
  src = fetchurl {
    url = http://mesh.dl.sourceforge.net/sourceforge/xine/xine-ui-0.99.5.tar.gz;
    sha256 = "07jywadk6fhk3wn1j9m0cfa0zy0i17kz0nyyxwa3shvhznfals0k";
  };
  buildInputs = [
    pkgconfig x11 xineLib libpng
    (if xineLib.xineramaSupport then xineLib.libXinerama else null)
  ];
  configureFlags = "--without-readline --disable-xft";

  meta = {
    description = "Xlib-based interface to Xine, a video player";
  };
}