summary refs log tree commit diff
path: root/pkgs/tools/admin/intecture
diff options
context:
space:
mode:
authorrushmorem <rushmore@webenchanter.com>2017-02-19 01:14:43 +0200
committerrushmorem <rushmore@webenchanter.com>2017-02-19 02:35:47 +0200
commitaf6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3 (patch)
tree6f5e44a2712da22cec94cbc988631674322b9b50 /pkgs/tools/admin/intecture
parentbf51a20825223e6655f0f9d5f00d984ce0bd4bba (diff)
downloadnixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar.gz
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar.bz2
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar.lz
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar.xz
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.tar.zst
nixlib-af6c722a7b3f32a3ef78eaedb06a2d9c4eee42b3.zip
intecture-cli: init at 0.3.2
Diffstat (limited to 'pkgs/tools/admin/intecture')
-rw-r--r--pkgs/tools/admin/intecture/cli.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/admin/intecture/cli.nix b/pkgs/tools/admin/intecture/cli.nix
new file mode 100644
index 000000000000..0f530f636d78
--- /dev/null
+++ b/pkgs/tools/admin/intecture/cli.nix
@@ -0,0 +1,32 @@
+{ stdenv, lib, fetchFromGitHub, rustPlatform
+, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+  name = "intecture-cli-${version}";
+  version = "0.3.2";
+
+  src = fetchFromGitHub {
+    owner = "intecture";
+    repo = "cli";
+    rev = version;
+    sha256 = "0f5pyrlkxzz4kdfzwambxzqr48g3n06f1pv163h06ggssqa51wbc";
+  };
+
+  depsSha256 = "0f3rhjs5addppva4cjx3ngpa5gz2i2n46hyc3zd4l7lhh8gaggix";
+
+  buildInputs = [ openssl zeromq czmq zlib ];
+
+  nativeBuildInputs = [ pkgconfig cmake ];
+
+  # Needed for tests
+  USER = "$(whoami)";
+
+  meta = with lib; {
+    description = "A developer friendly, language agnostic configuration management tool for server systems";
+    homepage = https://intecture.io;
+    license = licenses.mpl20;
+    maintainers = [ maintainers.rushmorem ];
+  };
+}