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

stdenv.mkDerivation {
  name = "xine-ui-0.99.3";
  src = fetchurl {
    url = http://heanet.dl.sourceforge.net/sourceforge/xine/xine-ui-0.99.3.tar.gz;
    md5 = "aa7805a93e511e3d67dc1bf09a71fcdd";
  };
  buildInputs = [x11 xineLib libpng];
  configureFlags = "--without-readline";
}