File tree 2 files changed +10
-9
lines changed
nixos/modules/services/continuous-integration/hydra
pkgs/development/tools/misc/hydra
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 28
28
29
29
serverEnv = env //
30
30
{ HYDRA_TRACKER = cfg . tracker ;
31
+ XDG_CACHE_HOME = "${ baseDir } /www/.cache" ;
31
32
COLUMNS = "80" ;
32
33
PGPASSFILE = "${ baseDir } /pgpass-www" ; # grrr
33
34
} // ( optionalAttrs cfg . debugServer { DBIC_TRACE = "1" ; } ) ;
225
226
226
227
services . hydra . extraConfig =
227
228
''
228
- using_frontend_proxy 1
229
- base_uri ${ cfg . hydraURL }
230
- notification_sender ${ cfg . notificationSender }
231
- max_servers 25
229
+ using_frontend_proxy = 1
230
+ base_uri = ${ cfg . hydraURL }
231
+ notification_sender = ${ cfg . notificationSender }
232
+ max_servers = 25
232
233
${ optionalString ( cfg . logo != null ) ''
233
- hydra_logo ${ cfg . logo }
234
+ hydra_logo = ${ cfg . logo }
234
235
'' }
235
- gc_roots_dir ${ cfg . gcRootsDir }
236
+ gc_roots_dir = ${ cfg . gcRootsDir }
236
237
use-substitutes = ${ if cfg . useSubstitutes then "1" else "0" }
237
238
'' ;
238
239
Original file line number Diff line number Diff line change 62
62
} ;
63
63
in releaseTools . nixBuild rec {
64
64
name = "hydra-${ version } " ;
65
- version = "2017-10-26 " ;
65
+ version = "2017-11-21 " ;
66
66
67
67
inherit stdenv ;
68
68
69
69
src = fetchFromGitHub {
70
70
owner = "NixOS" ;
71
71
repo = "hydra" ;
72
- rev = "2cdc84f34f4de647dd89c5ef503782a3a48ff623 " ;
73
- sha256 = "1gcp22ldyc914aik4yhlzy60ym7z8513pvp0ag5637j44nz0rf7h " ;
72
+ rev = "b7bc4384b7b471d1ddf892cb03f16189a66d5a0d " ;
73
+ sha256 = "05g37z3ilazzqa5rqj5zljndwxjbvpc18xibh6jlwjwpvg3kpbbh " ;
74
74
} ;
75
75
76
76
buildInputs =
You can’t perform that action at this time.
0 commit comments