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

29 lines
663 B
Nix
Raw Normal View History

2016-08-29 00:55:40 +00:00
{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
name = "cpp-hocon-${version}";
2017-09-25 10:59:41 +00:00
version = "0.1.6";
2016-08-29 00:55:40 +00:00
src = fetchFromGitHub {
2017-09-25 10:59:41 +00:00
sha256 = "0qf2nqp28ahypnzjrr37f54i06ylni40y18q9kwp5s7i5cwbjqgc";
2016-08-29 00:55:40 +00:00
rev = version;
repo = "cpp-hocon";
owner = "puppetlabs";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl leatherman ];
2017-09-25 10:59:41 +00:00
enableParallelBuilding = true;
2016-08-29 00:55:40 +00: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;
};
}