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

35 lines
855 B
Nix
Raw Normal View History

2017-04-30 04:12:47 -07:00
{ stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
2016-04-17 09:35:10 -07:00
stdenv.mkDerivation rec {
pname = "leatherman";
2020-05-02 06:30:24 -07:00
version = "1.12.0";
2016-04-17 09:35:10 -07:00
src = fetchFromGitHub {
2020-05-02 06:30:24 -07:00
sha256 = "00qigglp67a14ki4dhjxd3j540a80rkmzhysx7hra8v2rgbsqgj8";
2016-04-17 09:35:10 -07:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
2019-10-29 18:29:30 -07:00
NIX_CFLAGS_COMPILE = builtins.toString [
2019-11-02 11:45:08 -07:00
"-Wno-error=ignored-qualifiers"
"-Wno-error=class-memaccess"
"-Wno-error=catch-value"
"-Wno-error=deprecated-copy"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl ruby ];
2016-04-17 09:35:10 -07:00
2017-09-25 04:01:43 -07:00
enableParallelBuilding = true;
2016-04-17 09:35:10 -07:00
meta = with stdenv.lib; {
2020-03-28 21:20:24 -07:00
homepage = "https://github.com/puppetlabs/leatherman/";
2016-04-17 09:35:10 -07:00
description = "A collection of C++ and CMake utility libraries";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux;
};
}