nixpkgs/pkgs/development/libraries/leatherman/default.nix

27 lines
657 B
Nix
Raw Normal View History

2017-04-30 13:12:47 +02:00
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
2016-04-17 18:35:10 +02:00
stdenv.mkDerivation rec {
name = "leatherman-${version}";
version = "1.4.0";
2016-04-17 18:35:10 +02:00
src = fetchFromGitHub {
sha256 = "0whlyzz0imv4lm69xkwhcd6jzh3s0rzlqjmwimbqz96p4771ivpd";
2016-04-17 18:35:10 +02:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
2017-04-30 13:12:47 +02:00
buildInputs = [ boost cmake curl ruby ];
2016-04-17 18:35:10 +02:00
2017-09-25 13:01:43 +02:00
enableParallelBuilding = true;
2016-04-17 18:35:10 +02: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;
};
}