We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6552835 commit d85af30Copy full SHA for d85af30
nix/master.nix
@@ -183,9 +183,21 @@ in
183
ps.treq
184
ps.psycopg2
185
(ps.toPythonModule pkgs.buildbot-worker)
186
+ pkgs.buildbot-plugins.badges
187
pkgs.buildbot-plugins.www-react
188
(pkgs.python3.pkgs.callPackage ../default.nix { })
189
];
190
+
191
+ extraConfig = ''
192
+ c.setdefault("www", {})
193
+ c['www'].setdefault("plugins", {})
194
+ # https://docs.buildbot.net/current/manual/configuration/www.html#badges
195
+ c['www']['plugins'].setdefault("badges", {})
196
+ ''''
197
+ ${builtins.toJSON www_config}
198
199
+ ))
200
+ '';
201
};
202
203
systemd.services.buildbot-master = {
0 commit comments