nixpkgs/pkgs/tools/admin/intecture/auth.nix

30 lines
743 B
Nix
Raw Normal View History

2017-02-19 02:05:18 +01:00
{ stdenv, lib, fetchFromGitHub, rustPlatform
, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
with rustPlatform;
buildRustPackage rec {
name = "intecture-auth-${version}";
2017-10-12 23:20:45 +02:00
version = "0.1.2";
2017-02-19 02:05:18 +01:00
src = fetchFromGitHub {
owner = "intecture";
repo = "auth";
rev = version;
2017-10-12 23:20:45 +02:00
sha256 = "0c7ar3pc7n59lzfy74lwz51p09s2bglc870rfr4c0vmc91jl0pj2";
2017-02-19 02:05:18 +01:00
};
cargoSha256 = "0q3mrcvl1yyrx4a88kanjlfcx6slf7r79i0dh4w81sj6gp07sssm";
2017-02-19 02:05:18 +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 ];
};
}