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