linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / leatherman / default.nix
blob61d87211e0a5ccda404acad6bd6d4263d6ebfb03
1 { lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
3 stdenv.mkDerivation rec {
4   pname = "leatherman";
5   version = "1.12.4";
7   src = fetchFromGitHub {
8     sha256 = "sha256-7e9D9Q3CAm+2+0vl81djSZwKrQRXc5UxcbJVMt91/vU=";
9     rev = version;
10     repo = "leatherman";
11     owner = "puppetlabs";
12   };
14   NIX_CFLAGS_COMPILE = "-Wno-error";
16   nativeBuildInputs = [ cmake ];
17   buildInputs = [ boost curl ruby ];
19   meta = with lib; {
20     homepage = "https://github.com/puppetlabs/leatherman/";
21     description = "A collection of C++ and CMake utility libraries";
22     license = licenses.asl20;
23     maintainers = [ maintainers.womfoo ];
24     platforms = platforms.unix;
25   };