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
npmDepsHash = "sha256:12isrjcrldz1zyccdy46cr8x6bxjlf5603g8m1yg8dar3ajp4b6h";
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
'';
}