2005-10-21 12:39:01 +02:00
|
|
|
{stdenv, fetchurl, alsaLib, esound, libogg, libvorbis, glib, gtk}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "xmms-1.2.10";
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/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];
|
|
|
|
}
|