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

30 lines
712 B
Nix
Raw Normal View History

2017-04-30 13:12:47 +02:00
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
2016-04-17 18:35:10 +02:00
stdenv.mkDerivation rec {
pname = "leatherman";
2020-11-15 09:50:20 +01:00
version = "1.12.3";
2016-04-17 18:35:10 +02:00
src = fetchFromGitHub {
2020-11-15 09:50:20 +01:00
sha256 = "1mhj29n40z7bvn1ns61wf8812ikm2mpc0d5ip0ha920z0anzqhwr";
2016-04-17 18:35:10 +02:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
2020-07-04 11:21:00 +02:00
NIX_CFLAGS_COMPILE = "-Wno-error";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl ruby ];
2016-04-17 18:35:10 +02:00
2017-09-25 13:01:43 +02:00
enableParallelBuilding = true;
2016-04-17 18:35:10 +02:00
meta = with stdenv.lib; {
2020-03-29 06:20:24 +02:00
homepage = "https://github.com/puppetlabs/leatherman/";
2016-04-17 18:35:10 +02:00
description = "A collection of C++ and CMake utility libraries";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
2020-07-04 11:21:00 +02:00
platforms = platforms.unix;
2016-04-17 18:35:10 +02:00
};
}