intecture-auth: init at 0.1.0

This commit is contained in:
rushmorem 2017-02-19 03:05:18 +02:00
parent de4a17409f
commit 31d4b7b830
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 { }; innoextract = callPackage ../tools/archivers/innoextract { };
intecture-auth = callPackage ../tools/admin/intecture/auth.nix { };
intecture-cli = callPackage ../tools/admin/intecture/cli.nix { }; intecture-cli = callPackage ../tools/admin/intecture/cli.nix { };
ioping = callPackage ../tools/system/ioping { }; ioping = callPackage ../tools/system/ioping { };