Adding libconfig, a simple library for processing config files

svn path=/nixpkgs/trunk/; revision=33633
This commit is contained in:
Cillian de Roiste 2012-04-05 21:12:12 +00:00
parent ef0b72dd6c
commit 3bf7f18d4d
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libconfig-${version}";
version = "1.4.8";
src = fetchurl {
url = "http://www.hyperrealm.com/libconfig/${name}.tar.gz";
sha256 = "1v817hy9y416i64ly17xdmgrn62qwj225wqakdzqr2j3pygm1c8q";
};
meta = with stdenv.lib; {
homepage = http://www.hyperrealm.com/libconfig;
description = "a simple library for processing structured configuration files";
license = licenses.lgpl3;
maintainers = [ maintainers.goibhniu ];
};
}

View file

@ -939,6 +939,8 @@ let
lftp = callPackage ../tools/networking/lftp { };
libconfig = callPackage ../development/libraries/libconfig { };
libtirpc = callPackage ../development/libraries/ti-rpc { };
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };