nixpkgs/pkgs/development/libraries/cpp-hocon/default.nix

31 lines
703 B
Nix
Raw Normal View History

2016-08-28 17:55:40 -07:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
pname = "cpp-hocon";
2020-06-15 06:55:20 -07:00
version = "0.2.2";
2016-08-28 17:55:40 -07:00
src = fetchFromGitHub {
2020-06-15 06:55:20 -07:00
sha256 = "1c8zy4hi0182k0vfx5l8bjq1iv7lvvw1zi4vy3429s898rx7z3d3";
2016-08-28 17:55:40 -07:00
rev = version;
repo = "cpp-hocon";
owner = "puppetlabs";
};
2019-10-29 18:29:30 -07:00
NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
2019-01-11 03:02:16 -08:00
2016-08-28 17:55:40 -07:00
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl leatherman ];
2017-09-25 03:59:41 -07:00
enableParallelBuilding = true;
2016-08-28 17:55:40 -07:00
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = " A C++ port of the Typesafe Config library";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux;
};
}