2005-10-21 12:39:01 +02:00
|
|
|
{stdenv, fetchurl, alsaLib, esound, libogg, libvorbis, glib, gtk}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xmms-1.2.10";
|
2009-10-28 16:31:52 +01:00
|
|
|
|
2005-10-21 12:39:01 +02:00
|
|
|
src = fetchurl {
|
2008-11-14 17:57:19 +01:00
|
|
|
url = http://nixos.org/tarballs/xmms-1.2.10.tar.bz2;
|
2006-02-02 15:12:31 +01:00
|
|
|
md5 = "03a85cfc5e1877a2e1f7be4fa1d3f63c";
|
2005-10-21 12:39:01 +02:00
|
|
|
};
|
|
|
|
|
2006-01-27 00:34:22 +01:00
|
|
|
# Patch borrowed from SuSE 10.0 to fix pause/continue on ALSA.
|
|
|
|
patches = [./alsa.patch];
|
|
|
|
|
2005-10-21 12:39:01 +02:00
|
|
|
buildInputs = [alsaLib esound libogg libvorbis glib gtk];
|
2006-10-11 18:45:55 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A music player very similar to Winamp";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://www.xmms.org;
|
2009-10-28 16:31:52 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2006-10-11 18:45:55 +02:00
|
|
|
};
|
2005-10-21 12:39:01 +02:00
|
|
|
}
|