authelia: actually remember me
This commit is contained in:
parent
e8271a99e4
commit
aa6df3dde3
3 changed files with 34 additions and 16 deletions
|
@ -18,6 +18,30 @@ in sources // {
|
|||
# url = "https://github.com/NixOS/nixpkgs/pull/353360.patch";
|
||||
# sha256 = "sha256-WPNnvVmtySyEk58kVIYWVx3VN8MhX4v2ITLLnUGhpz4=";
|
||||
# })
|
||||
(pkgs.writeText "authelia.patch" ''
|
||||
diff --git a/pkgs/servers/authelia/default.nix b/pkgs/servers/authelia/default.nix
|
||||
index 2c49c09b0550..35f0827f89d7 100644
|
||||
--- a/pkgs/servers/authelia/default.nix
|
||||
+++ b/pkgs/servers/authelia/default.nix
|
||||
@@ -7,6 +7,7 @@
|
||||
installShellFiles,
|
||||
callPackage,
|
||||
nixosTests,
|
||||
+ web ? callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; },
|
||||
}:
|
||||
|
||||
let
|
||||
@@ -16,7 +17,7 @@ let
|
||||
src
|
||||
vendorHash
|
||||
;
|
||||
- web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; };
|
||||
+ # web = callPackage ./web.nix { inherit nodejs pnpm fetchFromGitHub; };
|
||||
in
|
||||
buildGoModule rec {
|
||||
inherit
|
||||
|
||||
'')
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue