nixpkgs/pkgs/development/libraries/libconfig/default.nix
2019-03-19 19:43:41 -05:00

22 lines
588 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libconfig";
version = "1.7.2";
src = fetchurl {
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";
license = licenses.lgpl3;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux ++ platforms.darwin;
};
}