nixpkgs/pkgs/development/libraries/cpp-hocon/default.nix
Maximilian Bosch b43a3567ec
cpp-hocon: fix build w/glibc-2.34
Simply disable tests as it tries to pull in an old `catch2` from
`leatherman`.

Failing Hydra build: https://hydra.nixos.org/build/163982252
2022-02-27 10:27:00 +01:00

33 lines
739 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
stdenv.mkDerivation rec {
pname = "cpp-hocon";
version = "0.3.0";
src = fetchFromGitHub {
sha256 = "0b24anpwkmvbsn5klnr58vxksw00ci9pjhwzx7a61kplyhsaiydw";
rev = version;
repo = "cpp-hocon";
owner = "puppetlabs";
};
postPatch = ''
sed -i -e '/add_subdirectory(tests)/d' lib/CMakeLists.txt
'';
NIX_CFLAGS_COMPILE = "-Wno-error";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl leatherman ];
meta = with lib; {
inherit (src.meta) homepage;
description = "A C++ port of the Typesafe Config library";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
platforms = platforms.unix;
};
}