aboutsummaryrefslogtreecommitdiff
path: root/modules/authentik/authentik-web.nix
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-10-13 17:36:53 +0200
committerMax Audron <audron@cocaine.farm>2023-10-13 17:37:58 +0200
commit9e30ed04224144829d946335f3d43353aff24bc9 (patch)
treec6c213d0e504fc51a70aeb6a5747af3f9c4b78e5 /modules/authentik/authentik-web.nix
parentset bgp router-id (diff)
deploy authentik
Diffstat (limited to 'modules/authentik/authentik-web.nix')
-rw-r--r--modules/authentik/authentik-web.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/authentik/authentik-web.nix b/modules/authentik/authentik-web.nix
deleted file mode 100644
index 3fbf416..0000000
--- a/modules/authentik/authentik-web.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, stdenv, buildNpmPackage, fetchFromGitHub, python3, ... }:
-
-buildNpmPackage rec {
- pname = "authentik-web";
- version = "2023.8.3";
-
- src = fetchFromGitHub {
- owner = "goauthentik";
- repo = "authentik";
- rev = "version/${version}";
- hash = "sha256-dpGvxhA5NWO8LKrGXzalV9EVn/nUIj6sMy2HdY5tjlM=";
- };
-
- sourceRoot = "source/web";
-
- npmDepsHash = "sha256-kCKtrsUA7VLHzf9SR/UW1z3RCpQc5r5sa/f4dxonTZ0=";
- npmPackFlags = [ "--ignore-scripts" ];
- npmBuildScript = "build";
-
- nativeBuildInputs = [ python3 ];
-
- installPhase = ''
- mkdir $out
- cp -r dist/ $out/
- cp -r authentik/ $out/
- '';
-}