1 { lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 sha256 = "sha256-7e9D9Q3CAm+2+0vl81djSZwKrQRXc5UxcbJVMt91/vU=";
14 NIX_CFLAGS_COMPILE = "-Wno-error";
16 nativeBuildInputs = [ cmake ];
17 buildInputs = [ boost curl ruby ];
20 homepage = "https://github.com/puppetlabs/leatherman/";
21 description = "A collection of C++ and CMake utility libraries";
22 license = licenses.asl20;
23 maintainers = [ maintainers.womfoo ];
24 platforms = platforms.unix;