Merge pull request #57933 from dtzWill/update/libconfig-1.7.2

libconfig: 1.5 -> 1.7.2, enable tests
This commit is contained in:
Will Dietz 2019-03-21 16:44:26 -05:00 committed by GitHub
commit 344c24fe1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libconfig-${version}";
version = "1.5";
pname = "libconfig";
version = "1.7.2";
src = fetchurl {
url = "http://www.hyperrealm.com/libconfig/${name}.tar.gz";
sha256 = "e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6";
url = "https://hyperrealm.github.io/${pname}/dist/${pname}-${version}.tar.gz";
sha256 = "1ngs2qx3cx5cbwinc5mvadly0b5n7s86zsc68c404czzfff7lg3w";
};
doCheck = true;
meta = with stdenv.lib; {
homepage = http://www.hyperrealm.com/libconfig;
description = "A simple library for processing structured configuration files";