libconfig: 1.5 -> 1.7.2, enable tests

This commit is contained in:
Will Dietz 2019-03-19 17:32:57 -05:00
parent 8403965d01
commit 3e1079da0e

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";