summary refs log tree commit diff
path: root/pkgs/tools/admin/intecture
diff options
context:
space:
mode:
authorrushmorem <rushmore@webenchanter.com>2017-02-19 03:05:18 +0200
committerrushmorem <rushmore@webenchanter.com>2017-02-19 03:20:37 +0200
commit31d4b7b83041129dffd009323cd87d1feb143762 (patch)
tree7fbc2f38ce026ed887c902735a9b407155a65a6e /pkgs/tools/admin/intecture
parentde4a17409feec402844911f1b080ef5ca47fd60c (diff)
downloadnixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar.gz
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar.bz2
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar.lz
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar.xz
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.tar.zst
nixlib-31d4b7b83041129dffd009323cd87d1feb143762.zip
intecture-auth: init at 0.1.0
Diffstat (limited to 'pkgs/tools/admin/intecture')
-rw-r--r--pkgs/tools/admin/intecture/auth.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/admin/intecture/auth.nix b/pkgs/tools/admin/intecture/auth.nix
new file mode 100644
index 000000000000..88ef137d841c
--- /dev/null
+++ b/pkgs/tools/admin/intecture/auth.nix
@@ -0,0 +1,29 @@
+{ stdenv, lib, fetchFromGitHub, rustPlatform
+, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+  name = "intecture-auth-${version}";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "intecture";
+    repo = "auth";
+    rev = version;
+    sha256 = "1p3jahha8k139f22ijg050cl8akfzxda4gzvijpqv869hmhc70py";
+  };
+
+  depsSha256 = "0mki57yzb29y9fhh16xvpi5gfp6c14r5q3f45f3v8sdj95rjahz1";
+
+  buildInputs = [ openssl zeromq czmq zlib ];
+
+  nativeBuildInputs = [ pkgconfig cmake ];
+
+  meta = with lib; {
+    description = "Authentication client/server for Intecture components";
+    homepage = https://intecture.io;
+    license = licenses.mpl20;
+    maintainers = [ maintainers.rushmorem ];
+  };
+}