about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/leatherman
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/leatherman')
-rw-r--r--nixpkgs/pkgs/development/libraries/leatherman/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/leatherman/default.nix b/nixpkgs/pkgs/development/libraries/leatherman/default.nix
new file mode 100644
index 000000000000..61d87211e0a5
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/leatherman/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub, boost, cmake, curl, ruby }:
+
+stdenv.mkDerivation rec {
+  pname = "leatherman";
+  version = "1.12.4";
+
+  src = fetchFromGitHub {
+    sha256 = "sha256-7e9D9Q3CAm+2+0vl81djSZwKrQRXc5UxcbJVMt91/vU=";
+    rev = version;
+    repo = "leatherman";
+    owner = "puppetlabs";
+  };
+
+  NIX_CFLAGS_COMPILE = "-Wno-error";
+
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ boost curl ruby ];
+
+  meta = with lib; {
+    homepage = "https://github.com/puppetlabs/leatherman/";
+    description = "A collection of C++ and CMake utility libraries";
+    license = licenses.asl20;
+    maintainers = [ maintainers.womfoo ];
+    platforms = platforms.unix;
+  };
+
+}