summary refs log tree commit diff
path: root/pkgs/development/libraries/libmcs/default.nix
blob: b197d5dcd5d34f6e4574cfe9e551b2f47a9129b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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;
  };
}