21 lines
576 B
Nix
21 lines
576 B
Nix
{ pkgs, ... }@args:
|
|
|
|
let
|
|
version = "2022.8.1-lukegb";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "lukegb";
|
|
repo = "authentik";
|
|
rev = "6df74b42786facde859a7809b534f929a2499fc2";
|
|
hash = "sha256:14hbihpb9wy8nc5qsibz4h0nwlnd4azb9i1w4isba5406rfxax3f";
|
|
};
|
|
subargs = args // { inherit src version; };
|
|
in rec {
|
|
inherit src;
|
|
docs = import ./docs subargs;
|
|
webui = import ./webui subargs;
|
|
pythonapp = import ./pythonapp subargs;
|
|
goserver = import ./goserver subargs;
|
|
server = import ./server (subargs // {
|
|
inherit docs webui pythonapp goserver;
|
|
});
|
|
}
|