nixpkgs/pkgs/development/libraries/libmcs/default.nix
Eelco Dolstra 3fac08a565 * Audacious updated to 3.0.
svn path=/nixpkgs/branches/kde-4.7/; revision=27959
2011-07-26 02:14:19 +00:00

18 lines
508 B
Nix

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