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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
734 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
2016-04-17 16:35:10 +00:00
stdenv.mkDerivation rec {
pname = "leatherman";
2022-10-07 19:53:31 +00:00
version = "1.12.9";
2016-04-17 16:35:10 +00:00
src = fetchFromGitHub {
2022-10-07 19:53:31 +00:00
sha256 = "sha256-TuiOAinJsQWJVJiaS8kWk4Pl+hn521f4ooJ2p+eR6mk=";
2016-04-17 16:35:10 +00:00
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};
cmakeFlags = [ "-DLEATHERMAN_ENABLE_TESTING=OFF" ];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl ruby ];
2016-04-17 16:35:10 +00:00
meta = with lib; {
2020-03-29 04:20:24 +00:00
homepage = "https://github.com/puppetlabs/leatherman/";
2016-04-17 16:35:10 +00:00
description = "A collection of C++ and CMake utility libraries";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
2020-07-04 09:21:00 +00:00
platforms = platforms.unix;
2016-04-17 16:35:10 +00:00
};
}