nixpkgs/pkgs/applications/audio/audacious/player.nix
Eelco Dolstra f30f36104b * Added Audacious, a fork of beep-media-player (which doesn't seem to
work very well after the Glibc update), plus its dependencies.

  TODO: make an audacious-wrapper that lets Audacious find its plugins
  automatically.  Currently you have to install audacious-plugins and
  symlink ~/.nix-profile/lib/audacious/* in
  ~/.local/share/audacious/Plugins.

svn path=/nixpkgs/trunk/; revision=10927
2008-03-03 10:55:20 +00:00

33 lines
874 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, gtk, libmowgli
, libglade, libmcs, gettext, xlibs, dbus_glib
}:
stdenv.mkDerivation {
name = "audacious-1.4.6";
src = fetchurl {
url = http://distfiles.atheme.org/audacious-1.4.6.tbz2;
sha256 = "0n4za82xlh3nfvfk0hq81bmh0sx233gxq8xj68jzalmbijsnbs0l";
};
buildInputs = [pkgconfig libglade libmcs gettext dbus_glib];
propagatedBuildInputs = [glib gtk libmowgli libmcs];
NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib";
# Otherwise we barf with "libgcc_s.so.1 must be installed for
# pthread_cancel to work" on exit, as it tries to find libgcc_s
# dynamically.
dontPatchELF = true;
preBuild = ''
ensureDir $out/lib
'';
meta = {
description = "Audacious, a media player forked from the Beep Media Player, which was itself an XMMS fork";
homepage = http://audacious-media-player.org/;
};
}