2017-04-30 11:12:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
|
2016-04-17 16:35:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "leatherman";
|
2019-12-08 13:42:28 +00:00
|
|
|
version = "1.9.1";
|
2016-04-17 16:35:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-12-08 13:42:28 +00:00
|
|
|
sha256 = "1aij0prpf7rvxx25qjf1krf0szb922hq9m6q58p90f5bjgymfzwh";
|
2016-04-17 16:35:10 +00:00
|
|
|
rev = version;
|
|
|
|
repo = "leatherman";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2019-01-11 10:57:31 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=ignored-qualifiers" "-Wno-error=class-memaccess" "-Wno-error=catch-value" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boost curl ruby ];
|
2016-04-17 16:35:10 +00:00
|
|
|
|
2017-09-25 11:01:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-17 16:35:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/puppetlabs/leatherman/;
|
|
|
|
description = "A collection of C++ and CMake utility libraries";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|