mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
8106168b7c
Semi-automatic update. These checks were performed: - built on NixOS - found 1.4.0 with grep in /nix/store/sxrvks9qfl857a5vgqw95dd9629l0p5q-leatherman-1.4.0 - found 1.4.0 in filename of file in /nix/store/sxrvks9qfl857a5vgqw95dd9629l0p5q-leatherman-1.4.0 cc "@womfoo"
26 lines
657 B
Nix
26 lines
657 B
Nix
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "leatherman-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "0whlyzz0imv4lm69xkwhcd6jzh3s0rzlqjmwimbqz96p4771ivpd";
|
|
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;
|
|
};
|
|
|
|
}
|