##// END OF EJS Templates
ldap: adde common ldap-ce na ldap-ee structure, and extend options...
ldap: adde common ldap-ce na ldap-ee structure, and extend options - added timeout - make the code more shared - allow specification of tls certdir and certfile manually

File last commit:

r3189:ed6bb022 default
r3235:db5132ef 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;
}