depot/nix/pkgs/authentik/docs/default.nix

21 lines
403 B
Nix
Raw Normal View History

2022-05-12 22:55:10 +00:00
{ pkgs, src, version, ... }:
pkgs.buildNpmPackage rec {
pname = "authentik-docs";
inherit src version;
2022-05-12 22:55:10 +00:00
sourceRoot = "source/website";
2022-05-12 22:55:10 +00:00
2024-03-01 23:49:17 +00:00
npmDepsHash = "sha256:03w483wh6dxarwh3bp6dva1r7kcy9py0lcg95l94915vf42h5855";
npmBuildFlags = "-- --config docusaurus.docs-only.ts";
2022-05-12 22:55:10 +00:00
dontNpmInstall = true;
installPhase = ''
runHook preInstall
2022-05-12 22:55:10 +00:00
cp -r build $out
runHook postInstall
'';
}