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

22 lines
588 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2019-03-19 22:32:57 +00:00
pname = "libconfig";
version = "1.7.2";
src = fetchurl {
2019-03-19 22:32:57 +00:00
url = "https://hyperrealm.github.io/${pname}/dist/${pname}-${version}.tar.gz";
sha256 = "1ngs2qx3cx5cbwinc5mvadly0b5n7s86zsc68c404czzfff7lg3w";
};
2019-03-19 22:32:57 +00:00
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 ];
2017-04-20 21:42:12 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}