##// END OF EJS Templates
configs: use new style of comments on .ini files....
configs: use new style of comments on .ini files. - This will allow better diffing options with control mako templates - main problem was ## comments which in mako we needed to escape. - cleanup configurations with some nicer formatting/comments

File last commit:

r3449:7c3af07c default
r4169:089413ab default
Show More
release.nix
22 lines | 324 B | text/x-nix | NixLexer
nix: updated to 18.03 nix packages...
r2824 # This file defines how to "build" for packaging.
project: added all source files and assets
r1
build: fix 32bit builds
r3449 { pkgs ? import <nixpkgs> {}
, system ? builtins.currentSystem
, doCheck ? false
project: added all source files and assets
r1 }:
let
nix: updated to 18.03 nix packages...
r2824 enterprise_ce = import ./default.nix {
project: added all source files and assets
r1 inherit
build: fix 32bit builds
r3449 doCheck
system;
release: disable check phase for building installation
r2956
# disable checkPhase for build
checkPhase = ''
'';
project: added all source files and assets
r1 };
nix: updated to 18.03 nix packages...
r2824 in {
build = enterprise_ce;
}