2018-07-21 01:44:44 +01:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform
|
2017-02-19 01:36:52 +00:00
|
|
|
, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
|
|
|
buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "intecture-agent";
|
2017-10-12 22:55:14 +01:00
|
|
|
version = "0.3.1";
|
2017-02-19 01:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intecture";
|
|
|
|
repo = "agent";
|
|
|
|
rev = version;
|
2017-10-12 22:55:14 +01:00
|
|
|
sha256 = "0j27qdgyxybaixggh7k57mpm6rifimn4z2vydk463msc8b3kgywj";
|
2017-02-19 01:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-03-08 23:17:12 +00:00
|
|
|
cargoSha256 = "1is1cbbwxf00dc64h76h57s0wxsai0zm5vfrrss7598cim6a4yxb";
|
2017-02-19 01:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ openssl zeromq czmq zlib ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Authentication client/server for Intecture components";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://intecture.io";
|
2017-02-19 01:36:52 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = [ maintainers.rushmorem ];
|
|
|
|
};
|
|
|
|
}
|