nixpkgs/pkgs/development/libraries/leatherman/default.nix
Ryan Mulligan 8106168b7c leatherman: 1.3.0 -> 1.4.0
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"
2018-02-26 20:05:11 -08:00

27 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;
};
}