##// END OF EJS Templates
authentication: use registerd UID for plugin definition for more consistent loading of auth plugins.
authentication: use registerd UID for plugin definition for more consistent loading of auth plugins.

File last commit:

r3189:ed6bb022 default
r3246:ef7f5bf1 default
Show More
release.nix
19 lines | 248 B | text/x-nix | NixLexer
# This file defines how to "build" for packaging.
{ doCheck ? false
}:
let
enterprise_ce = import ./default.nix {
inherit
doCheck;
# disable checkPhase for build
checkPhase = ''
'';
};
in {
build = enterprise_ce;
}