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

25 lines
613 B
Nix
Raw Normal View History

2016-04-17 17:35:10 +01:00
{ stdenv, fetchFromGitHub, boost, cmake, curl }:
stdenv.mkDerivation rec {
name = "leatherman-${version}";
2016-12-27 04:47:58 +00:00
version = "0.10.1";
2016-04-17 17:35:10 +01:00
src = fetchFromGitHub {
2016-12-27 04:47:58 +00:00
sha256 = "0kjk3xq7v6bqq35ymj9vr9xz5kpcka51ms6489pm48adyaf53hs7";
2016-04-17 17:35:10 +01:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
buildInputs = [ boost cmake curl ];
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;
};
}