leatherman: init at 0.4.2
This commit is contained in:
parent
ca7f93a668
commit
6d2fb3c730
24
pkgs/development/libraries/leatherman/default.nix
Normal file
24
pkgs/development/libraries/leatherman/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2195,6 +2195,8 @@ in
|
|||||||
|
|
||||||
leafpad = callPackage ../applications/editors/leafpad { };
|
leafpad = callPackage ../applications/editors/leafpad { };
|
||||||
|
|
||||||
|
leatherman = callPackage ../development/libraries/leatherman {};
|
||||||
|
|
||||||
leela = callPackage ../tools/graphics/leela { };
|
leela = callPackage ../tools/graphics/leela { };
|
||||||
|
|
||||||
lftp = callPackage ../tools/networking/lftp { };
|
lftp = callPackage ../tools/networking/lftp { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user