nixpkgs/pkgs/applications/audio/xmms/default.nix
Eelco Dolstra 69b41650ad * Fix an annoying problem with xmms's ALSA output driver. Thanks
SuSE!

svn path=/nixpkgs/trunk/; revision=4607
2006-01-26 23:34:22 +00:00

15 lines
405 B
Nix

{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" ;
};
# Patch borrowed from SuSE 10.0 to fix pause/continue on ALSA.
patches = [./alsa.patch];
buildInputs = [alsaLib esound libogg libvorbis glib gtk];
}