c3679eaa18
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/leatherman/versions
27 lines
657 B
Nix
27 lines
657 B
Nix
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "leatherman-${version}";
|
|
version = "1.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "08hd6j8w4mgnxj84y26vip1vgrg668jnil5jzq2dk4pfapigfz8l";
|
|
rev = version;
|
|
repo = "leatherman";
|
|
owner = "puppetlabs";
|
|
};
|
|
|
|
buildInputs = [ boost cmake curl ruby ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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;
|
|
};
|
|
|
|
}
|