nixpkgs/pkgs/development/libraries/cpp-hocon/default.nix
R. RyanTM b9f4afa38c cpp-hocon: 0.1.6 -> 0.1.7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/cpp-hocon/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.1.7 with grep in /nix/store/xvra7ffhxjj2p4j80p253jwjxgwyp1rl-cpp-hocon-0.1.7
- directory tree listing: https://gist.github.com/f58abd979d8b4e35bed032e929b39177
- du listing: https://gist.github.com/361aabaa0ba139c553980b12090a1f95
2018-06-27 22:45:23 -07:00

29 lines
663 B
Nix

{ stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
name = "cpp-hocon-${version}";
version = "0.1.7";
src = fetchFromGitHub {
sha256 = "0mfpz349c3arihvngw1a1gfhwlcw6wiwyc44bghjx1q109w7wm1m";
rev = version;
repo = "cpp-hocon";
owner = "puppetlabs";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl leatherman ];
enableParallelBuilding = true;
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;
};
}