1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libconfig-${version}";
5 version = "1.5";
6
7 src = fetchurl {
8 url = "http://www.hyperrealm.com/libconfig/${name}.tar.gz";
9 sha256 = "e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = http://www.hyperrealm.com/libconfig;
14 description = "A simple library for processing structured configuration files";
15 license = licenses.lgpl3;
16 maintainers = [ maintainers.goibhniu ];
17 platforms = platforms.linux ++ platforms.darwin;
18 };
19}