nixpkgs/pkgs/applications/video/xine-ui/default.nix
Eelco Dolstra 607b0d3e80 * Rewrite all the SourceForge URLs to mirror://sourceforge/.
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done

svn path=/nixpkgs/trunk/; revision=9198
2007-08-27 13:01:33 +00:00

19 lines
519 B
Nix

{stdenv, fetchurl, pkgconfig, x11, xineLib, libpng}:
stdenv.mkDerivation {
name = "xine-ui-0.99.5";
src = fetchurl {
url = mirror://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";
};
}