1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://hyperrealm.github.io/${pname}/dist/${pname}-${version}.tar.gz";
9 sha256 = "sha256-VFFm1srAN3RDgdHpzFpUBQlOe/rRakEWmbz/QLuzHuc=";
14 configureFlags = lib.optional (stdenv.targetPlatform.isWindows || stdenv.hostPlatform.isStatic) "--disable-examples";
17 homepage = "http://www.hyperrealm.com/libconfig";
18 description = "A simple library for processing structured configuration files";
19 license = licenses.lgpl3;
20 maintainers = [ maintainers.goibhniu ];
21 platforms = with platforms; linux ++ darwin ++ windows;