##// END OF EJS Templates
tests: fixed links to rst manual.
tests: fixed links to rst manual.

File last commit:

r3449:7c3af07c default
r4437:11bdf63d 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;
}