nixpkgs/pkgs/development/libraries/leatherman/default.nix
R. RyanTM a7b3c2eead leatherman: 1.4.1 -> 1.4.2
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.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.4.2 with grep in /nix/store/r5pgnnj5j1n4p59xa4zr2nm4pjbwcwhq-leatherman-1.4.2
- directory tree listing: https://gist.github.com/c901957b585910ac947b083d026a7598
- du listing: https://gist.github.com/77c6bc02640505c537f0bd7cd13c79a6
2018-06-23 22:08:34 -07:00

27 lines
657 B
Nix

{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
stdenv.mkDerivation rec {
name = "leatherman-${version}";
version = "1.4.2";
src = fetchFromGitHub {
sha256 = "0lhdncwg2xbd3gy65rx8w2qcxvcwfirzkl762zdwqxf6bj6p2hvb";
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;
};
}