about summary refs log tree commit diff
path: root/pkgs/applications/audio/xmms/default.nix
blob: 8e2650fd7c09c3f2b17d6264a789a9ad1d269e22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, alsaLib, esound, libogg, libvorbis, glib, gtk}:

stdenv.mkDerivation {
  name = "xmms-1.2.10";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/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];

  meta = {
    description = "A music player very similar to Winamp";
    homepage = http://www.xmms.org;
  };
}