From d0e8b2ea0c5c683b48307d985aa87deaec588106 Mon Sep 17 00:00:00 2001 From: eyjhb Date: Sun, 9 Feb 2025 10:23:12 +0100 Subject: [PATCH] authelia: move web to arguments as authelia-web --- pkgs/servers/authelia/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/authelia/default.nix b/pkgs/servers/authelia/default.nix index 2c49c09b0550..364060ca90d2 100644 --- a/pkgs/servers/authelia/default.nix +++ b/pkgs/servers/authelia/default.nix @@ -7,6 +7,7 @@ installShellFiles, callPackage, nixosTests, + authelia-web ? callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; }, }: let @@ -16,7 +17,8 @@ let src vendorHash ; - web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; }; + + web = authelia-web; in buildGoModule rec { inherit