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