nixpkgs/pkgs/development/libraries/libconfig/default.nix

19 lines
507 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libconfig-${version}";
2013-12-15 23:31:22 +00:00
version = "1.4.9";
src = fetchurl {
url = "http://www.hyperrealm.com/libconfig/${name}.tar.gz";
2013-12-15 23:31:22 +00:00
sha256 = "0h9h8xjd36lky2r8jyc6hw085xwpslf0x6wyjvi960g6aa99gj09";
};
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 ];
};
}