2017-04-30 12:12:47 +01:00
|
|
|
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
|
2016-04-17 17:35:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "leatherman";
|
2019-10-22 08:42:19 +01:00
|
|
|
version = "1.8.0";
|
2016-04-17 17:35:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-10-22 08:42:19 +01:00
|
|
|
sha256 = "0iizy20pdkbnsfj6bzrkkj7faizc85lcpkpandvnxfybiq7j60iw";
|
2016-04-17 17:35:10 +01: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 17:35:10 +01:00
|
|
|
|
2017-09-25 12:01:43 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-17 17:35:10 +01: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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|