1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 16:46:09 +00:00
nixpkgs/pkgs/tools/admin/intecture/auth.nix

30 lines
742 B
Nix
Raw Normal View History

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