nixpkgs/pkgs/applications/video/xine-ui/default.nix
Eelco Dolstra c90e049b98 * Xine updated to 1.0.
* Xine UI updated to 0.99.3.

svn path=/nixpkgs/trunk/; revision=2046
2005-01-15 21:49:33 +00:00

12 lines
326 B
Nix

{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";
}