2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
|
2016-04-17 18:35:10 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "leatherman";
|
2021-07-20 09:37:10 +02:00
|
|
|
version = "1.12.6";
|
2016-04-17 18:35:10 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-07-20 09:37:10 +02:00
|
|
|
sha256 = "sha256-k5Lt/NCSlBaTGhpR4T3Q4Ih+RR1xKROxz+RNYor7zaQ=";
|
2016-04-17 18:35:10 +02:00
|
|
|
rev = version;
|
|
|
|
repo = "leatherman";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2020-07-04 11:21:00 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2019-01-11 11:57:31 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boost curl ruby ];
|
2016-04-17 18:35:10 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-03-29 06:20:24 +02:00
|
|
|
homepage = "https://github.com/puppetlabs/leatherman/";
|
2016-04-17 18:35:10 +02:00
|
|
|
description = "A collection of C++ and CMake utility libraries";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.womfoo ];
|
2020-07-04 11:21:00 +02:00
|
|
|
platforms = platforms.unix;
|
2016-04-17 18:35:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|