Merge pull request #22979 from rushmorem/intecture

intecture-auth: init at 0.1.0
This commit is contained in:
Rushmore Mushambi 2017-02-19 03:28:37 +02:00 committed by GitHub
commit 0982d9b00f
2 changed files with 31 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -2301,6 +2301,8 @@ with pkgs;
innoextract = callPackage ../tools/archivers/innoextract { };
intecture-auth = callPackage ../tools/admin/intecture/auth.nix { };
intecture-cli = callPackage ../tools/admin/intecture/cli.nix { };
ioping = callPackage ../tools/system/ioping { };