From da3385eb1c704946dbcefe569a165f85fc22f909 Mon Sep 17 00:00:00 2001 From: liberodark Date: Thu, 3 Jul 2025 13:34:20 +0200 Subject: [PATCH] proxyauth: init at 0.7.12 --- pkgs/by-name/pr/proxyauth/package.nix | 53 +++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 pkgs/by-name/pr/proxyauth/package.nix diff --git a/pkgs/by-name/pr/proxyauth/package.nix b/pkgs/by-name/pr/proxyauth/package.nix new file mode 100644 index 000000000000..3d92c2aaf099 --- /dev/null +++ b/pkgs/by-name/pr/proxyauth/package.nix @@ -0,0 +1,53 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + pkg-config, + openssl, + nettle, + versionCheckHook, + nix-update-script, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "proxyauth"; + version = "0.7.12"; + + src = fetchFromGitHub { + owner = "ProxyAuth"; + repo = "ProxyAuth"; + tag = finalAttrs.version; + hash = "sha256-P0sAbcaf0jP+d8YjHlNKqf7H5iv/hEr/IQbCE7cgeiQ="; + }; + + useFetchCargoVendor = true; + cargoHash = "sha256-Yxyg82rQaMgsnWOWE+DmrCzBBpgsicL2Qj6AB+7tv44="; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + openssl + nettle + ]; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = "--version"; + doInstallCheck = true; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = { + description = "Proxy Authentication Token - Fast authentication gateway for backend APIs"; + homepage = "https://github.com/ProxyAuth/ProxyAuth"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ liberodark ]; + platforms = lib.platforms.linux; + mainProgram = "proxyauth"; + }; +})