2018-07-21 02:44:44 +02:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform
|
2017-02-19 02:36:52 +01:00
|
|
|
, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
2019-08-31 13:41:23 +02:00
|
|
|
pname = "intecture-agent";
|
2017-10-12 23:55:14 +02:00
|
|
|
version = "0.3.1";
|
2017-02-19 02:36:52 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intecture";
|
|
|
|
repo = "agent";
|
|
|
|
rev = version;
|
2017-10-12 23:55:14 +02:00
|
|
|
sha256 = "0j27qdgyxybaixggh7k57mpm6rifimn4z2vydk463msc8b3kgywj";
|
2017-02-19 02:36:52 +01:00
|
|
|
};
|
|
|
|
|
2019-05-25 13:03:08 +02:00
|
|
|
cargoSha256 = "093ipd8lg2ngnln55x5j40g2n8f3y8aysgz9rjn95a4npxrg4yxw";
|
2017-02-19 02:36:52 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|