Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

intecture-auth: init at 0.1.0

+31
+29
pkgs/tools/admin/intecture/auth.nix
··· 1 + { stdenv, lib, fetchFromGitHub, rustPlatform 2 + , openssl, zeromq, czmq, pkgconfig, cmake, zlib }: 3 + 4 + with rustPlatform; 5 + 6 + buildRustPackage rec { 7 + name = "intecture-auth-${version}"; 8 + version = "0.1.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "intecture"; 12 + repo = "auth"; 13 + rev = version; 14 + sha256 = "1p3jahha8k139f22ijg050cl8akfzxda4gzvijpqv869hmhc70py"; 15 + }; 16 + 17 + depsSha256 = "0mki57yzb29y9fhh16xvpi5gfp6c14r5q3f45f3v8sdj95rjahz1"; 18 + 19 + buildInputs = [ openssl zeromq czmq zlib ]; 20 + 21 + nativeBuildInputs = [ pkgconfig cmake ]; 22 + 23 + meta = with lib; { 24 + description = "Authentication client/server for Intecture components"; 25 + homepage = https://intecture.io; 26 + license = licenses.mpl20; 27 + maintainers = [ maintainers.rushmorem ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 2301 2301 2302 2302 innoextract = callPackage ../tools/archivers/innoextract { }; 2303 2303 2304 + intecture-auth = callPackage ../tools/admin/intecture/auth.nix { }; 2305 + 2304 2306 intecture-cli = callPackage ../tools/admin/intecture/cli.nix { }; 2305 2307 2306 2308 ioping = callPackage ../tools/system/ioping { };