nixpkgs/pkgs/applications/audio/audacious/plugins.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

30 lines
790 B
Nix

{ stdenv, fetchurl, pkgconfig, audacious, dbus_glib, gettext
, libmad, xlibs, alsaLib, taglib, libmpcdec, libogg, libvorbis
}:
stdenv.mkDerivation {
name = "audacious-plugins-1.4.5";
src = fetchurl {
url = http://distfiles.atheme.org/audacious-plugins-1.4.5.tbz2;
sha256 = "145dn2x1rldwbaxnl19j7cw338fs9fwcn607r8gk01adfy3warxq";
};
buildInputs = [
pkgconfig audacious dbus_glib gettext libmad
xlibs.libXcomposite alsaLib taglib libmpcdec
libogg libvorbis
];
preBuild = ''
makeFlagsArray=(pluginlibdir=$out/lib/audacious)
'';
NIX_LDFLAGS = "-L${audacious}/lib/audacious"; # needed because we override pluginlibdir
meta = {
description = "Plugins for the Audacious media player";
homepage = http://audacious-media-player.org/;
};
}