3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/leatherman/default.nix

25 lines
624 B
Nix
Raw Normal View History

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}";
2017-04-30 12:12:47 +01:00
version = "0.11.2";
2016-04-17 17:35:10 +01:00
src = fetchFromGitHub {
2017-04-30 12:12:47 +01:00
sha256 = "1rnk204mvzc44i69b8gfb1fjj5r4qby7ymal782rdplnlbm065r8";
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
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;
};
}