1 { lib, stdenv, fetchFromGitHub, cmake, boost, curl, leatherman }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 sha256 = "0b24anpwkmvbsn5klnr58vxksw00ci9pjhwzx7a61kplyhsaiydw";
15 sed -i -e '/add_subdirectory(tests)/d' lib/CMakeLists.txt
18 env.NIX_CFLAGS_COMPILE = "-Wno-error";
20 nativeBuildInputs = [ cmake ];
22 buildInputs = [ boost curl leatherman ];
25 inherit (src.meta) homepage;
26 description = "A C++ port of the Typesafe Config library";
27 license = licenses.asl20;
28 maintainers = [ maintainers.womfoo ];
29 platforms = platforms.unix;