##// END OF EJS Templates
packaging: extracted some optional debug libraries into a separate file so we don't build always those...
packaging: extracted some optional debug libraries into a separate file so we don't build always those packages that we only use in time of debug.

File last commit:

r2956:63ee4af1 default
r3141:b9ddffca default
Show More
release.nix
21 lines | 288 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
{ pkgs ? import <nixpkgs> {}
release: disable check phase for building installation
r2956 , 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
nix: updated to 18.03 nix packages...
r2824 doCheck
project: added all source files and assets
r1 pkgs;
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;
}