##// END OF EJS Templates
css: dropped not used ie.css file. We don't suppot IE9 anyway
css: dropped not used ie.css file. We don't suppot IE9 anyway

File last commit:

r2956:63ee4af1 default
r3177:96f0f6ea 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;
}