##// END OF EJS Templates
events: cleanup code, pep8, better logging.
events: cleanup code, pep8, better logging.

File last commit:

r2824:5ac461b5 default
r2920:c35ca856 default
Show More
release.nix
16 lines | 222 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> {}
nix: Propagate doCheck attribute.
r242 , doCheck ? true
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;
};
nix: updated to 18.03 nix packages...
r2824 in {
build = enterprise_ce;
}