1{ stdenv, fetchurl, pkgconfig, libmowgli }:
2
3stdenv.mkDerivation rec {
4 name = "libmcs-0.7.2";
5
6 src = fetchurl {
7 url = "http://distfiles.atheme.org/${name}.tbz2";
8 sha256 = "1knmgxrg2kxdlin8qyf6351943ldg8myllwf860af58x1wncxc74";
9 };
10
11 buildInputs = [ pkgconfig libmowgli ];
12
13 meta = {
14 description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications";
15 homepage = http://www.atheme.org/projects/mcs.shtml;
16 };
17}