1 { lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 sha256 = "sha256-5xcwktlwgP9Ltild4BliaGJBqlheDLSTKQLZjzK+nGk=";
14 cmakeFlags = [ "-DLEATHERMAN_ENABLE_TESTING=OFF" ];
16 NIX_CFLAGS_COMPILE = "-Wno-error";
18 nativeBuildInputs = [ cmake ];
19 buildInputs = [ boost curl ruby ];
22 homepage = "https://github.com/puppetlabs/leatherman/";
23 description = "A collection of C++ and CMake utility libraries";
24 license = licenses.asl20;
25 maintainers = [ maintainers.womfoo ];
26 platforms = platforms.unix;