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";
|
2020-07-12 07:33:20 +00:00
|
|
|
version = "1.12.1";
|
2016-04-17 16:35:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-07-12 07:33:20 +00:00
|
|
|
sha256 = "1mgd7jqfg6f0y2yrh2m1njlwrpd15kas88776jdd5fsl7gvb5khn";
|
2016-04-17 16:35:10 +00:00
|
|
|
rev = version;
|
|
|
|
repo = "leatherman";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2020-07-04 09:21:00 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2019-01-11 10:57:31 +00:00
|
|
|
|
|
|
|
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; {
|
2020-03-29 04:20:24 +00:00
|
|
|
homepage = "https://github.com/puppetlabs/leatherman/";
|
2016-04-17 16:35:10 +00:00
|
|
|
description = "A collection of C++ and CMake utility libraries";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
2020-07-04 09:21:00 +00:00
|
|
|
platforms = platforms.unix;
|
2016-04-17 16:35:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|