svn path=/nixpkgs/trunk/; revision=4111
This commit is contained in:
Martin Bravenboer 2005-10-21 10:39:01 +00:00
parent 33eee5d50d
commit 23dbf57984
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, alsaLib, esound, libogg, libvorbis, glib, gtk}:
stdenv.mkDerivation {
name = "xmms-1.2.10";
src = fetchurl {
url = http://www.xmms.org/files/1.2.x/xmms-1.2.10.tar.bz2;
md5 = "03a85cfc5e1877a2e1f7be4fa1d3f63c" ;
};
buildInputs = [alsaLib esound libogg libvorbis glib gtk];
}

View File

@ -1497,6 +1497,12 @@ rec {
inherit fetchurl stdenv ;
};
xmms = (import ../applications/audio/xmms) {
inherit fetchurl stdenv libogg libvorbis alsaLib;
inherit (gnome) esound;
inherit (gtkLibs1x) glib gtk;
};
MPlayer = (import ../applications/video/MPlayer) {
inherit fetchurl stdenv freetype x11 zlib libtheora libcaca;
inherit (xlibs) libXv;