nixpkgs/pkgs/development/libraries/libmcs/default.nix
Eelco Dolstra 6c2cbbbe87 * Updated Audacious and its dependencies.
svn path=/nixpkgs/trunk/; revision=12763
2008-08-29 11:31:16 +00:00

18 lines
503 B
Nix

{stdenv, fetchurl, pkgconfig, libmowgli}:
stdenv.mkDerivation {
name = "libmcs-0.7.1";
src = fetchurl {
url = http://distfiles.atheme.org/libmcs-0.7.1.tbz2;
sha256 = "16ckfdprqyb9jhhnhvyhw2rkwadq1z6l3a00fvix16sjzh8dgcz0";
};
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;
};
}