leatherman: init at 0.4.2

This commit is contained in:
Kranium Gikos Mendoza 2016-04-18 00:35:10 +08:00
parent ca7f93a668
commit 6d2fb3c730
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, boost, cmake, curl }:
stdenv.mkDerivation rec {
name = "leatherman-${version}";
version = "0.4.2";
src = fetchFromGitHub {
sha256 = "07bgv99lzzhxy4l7mdyassxqy33zv7arvfw63bymsqavppphqlrr";
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;
};
}

View File

@ -2195,6 +2195,8 @@ in
leafpad = callPackage ../applications/editors/leafpad { };
leatherman = callPackage ../development/libraries/leatherman {};
leela = callPackage ../tools/graphics/leela { };
lftp = callPackage ../tools/networking/lftp { };