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 {
|
|
|
|
name = "leatherman-${version}";
|
2018-04-20 12:23:49 +01:00
|
|
|
version = "1.4.1";
|
2016-04-17 17:35:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-04-20 12:23:49 +01:00
|
|
|
sha256 = "0n516gqv501ymj99bickbr2cbhr109azh9hc1hn7flbcjzz3aljc";
|
2016-04-17 17:35:10 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "leatherman";
|
|
|
|
owner = "puppetlabs";
|
|
|
|
};
|
|
|
|
|
2017-04-30 12:12:47 +01:00
|
|
|
buildInputs = [ boost cmake 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|