XMMS!
svn path=/nixpkgs/trunk/; revision=4111
This commit is contained in:
parent
33eee5d50d
commit
23dbf57984
11
pkgs/applications/audio/xmms/default.nix
Normal file
11
pkgs/applications/audio/xmms/default.nix
Normal 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];
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user