f30f36104b
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
10 lines
211 B
Nix
10 lines
211 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libmpcdec-1.2.6";
|
|
src = fetchurl {
|
|
url = http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2;
|
|
md5 = "7f7a060e83b4278acf4b77d7a7b9d2c0";
|
|
};
|
|
}
|