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
18 lines
502 B
Nix
18 lines
502 B
Nix
{stdenv, fetchurl, pkgconfig, libmowgli}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libmcs-0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = http://distfiles.atheme.org/libmcs-0.7.0.tgz;
|
|
sha256 = "11qjrxxgk0yvqm668dyaj54kgijcnkaid8dld8lf4br2glmz2jy5";
|
|
};
|
|
|
|
buildInputs = [pkgconfig libmowgli];
|
|
|
|
meta = {
|
|
description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications";
|
|
homepage = http://www.atheme.org/projects/mcs.shtml;
|
|
};
|
|
}
|