depot/nix/pkgs/authentik/webui/default.nix

19 lines
387 B
Nix
Raw Normal View History

2022-05-12 22:55:10 +00:00
{ pkgs, src, version, ... }:
pkgs.buildNpmPackage {
pname = "authentik-webui";
inherit src version;
2022-05-12 22:55:10 +00:00
sourceRoot = "source/web";
2022-05-12 22:55:10 +00:00
2023-01-08 05:26:00 +00:00
npmDepsHash = "sha256:0vnw31fd5in01jmhm4lx58z4l2lrficycipcxwn9xw2widi1g9xf";
2022-05-12 22:55:10 +00:00
dontNpmInstall = true;
installPhase = ''
runHook preInstall
mkdir $out
cp -r robots.txt security.txt dist/ authentik/ $out
runHook postInstall
'';
}