depot/nix/pkgs/authentik/default.nix

22 lines
576 B
Nix
Raw Normal View History

2022-05-12 22:55:10 +00:00
{ pkgs, ... }@args:
let
2022-05-21 16:16:29 +00:00
version = "2022.5.2-lukegb";
2022-05-12 22:55:10 +00:00
src = pkgs.fetchFromGitHub {
2022-05-14 21:38:54 +00:00
owner = "lukegb";
2022-05-12 22:55:10 +00:00
repo = "authentik";
2022-05-21 16:16:29 +00:00
rev = "2f60f75f8d34eea8c49475a230c44c64cc3be1e0";
hash = "sha256:0qld4s2liaps6dclpa557i0ds9z9w1g7fw5l3rk38w9xm57dmfj1";
2022-05-12 22:55:10 +00:00
};
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;
});
}