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
730 B
Nix
Raw Normal View History

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