nixpkgs/pkgs/development/libraries/leatherman/default.nix

27 lines
657 B
Nix
Raw Normal View History

2017-04-30 11:12:47 +00:00
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
2016-04-17 16:35:10 +00:00
stdenv.mkDerivation rec {
name = "leatherman-${version}";
version = "1.5.0";
2016-04-17 16:35:10 +00:00
src = fetchFromGitHub {
sha256 = "1plx111mfci8z33mwy56y54n597gi8965s7bmnribkk8bvdn10dy";
2016-04-17 16:35:10 +00:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
2017-04-30 11:12:47 +00:00
buildInputs = [ boost cmake curl ruby ];
2016-04-17 16:35:10 +00:00
2017-09-25 11:01:43 +00:00
enableParallelBuilding = true;
2016-04-17 16:35:10 +00:00
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;
};
}