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