mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
proxyauth: fix 404
This commit is contained in:
parent
a4eb2da89c
commit
b91aa6fb4b
1 changed files with 6 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
fetchFromForgejo,
|
||||
rustPlatform,
|
||||
pkg-config,
|
||||
openssl,
|
||||
|
|
@ -13,10 +13,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
pname = "proxyauth";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
src = fetchFromForgejo {
|
||||
domain = "git.proxyauth.app";
|
||||
owner = "ProxyAuth";
|
||||
repo = "ProxyAuth";
|
||||
tag = finalAttrs.version;
|
||||
rev = "13b353e4a8b34fc1736c834cfcaa9afe06e8abf8";
|
||||
# Tags were not replicated from GitHub to git.proxyauth.app
|
||||
hash = "sha256-cVjD91tBCGyslLsYUSP1Gy7KuMQZDVxQXU7fQkWeWyM=";
|
||||
};
|
||||
|
||||
|
|
@ -42,7 +44,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
|
||||
meta = {
|
||||
description = "Proxy Authentication Token - Fast authentication gateway for backend APIs";
|
||||
homepage = "https://github.com/ProxyAuth/ProxyAuth";
|
||||
homepage = "https://git.proxyauth.app/ProxyAuth/ProxyAuth";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ liberodark ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue