buildbot: use python2
This commit is contained in:
parent
212ce1c3b8
commit
8e8800884c
@ -5771,9 +5771,15 @@ in
|
||||
wxGTK = wxGTK30;
|
||||
};
|
||||
|
||||
buildbot = callPackage ../development/tools/build-managers/buildbot { };
|
||||
buildbot-worker = callPackage ../development/tools/build-managers/buildbot/worker.nix { };
|
||||
buildbot-plugins = callPackage ../development/tools/build-managers/buildbot/plugins.nix { };
|
||||
buildbot = callPackage ../development/tools/build-managers/buildbot {
|
||||
pythonPackages = python2Packages;
|
||||
};
|
||||
buildbot-worker = callPackage ../development/tools/build-managers/buildbot/worker.nix {
|
||||
pythonPackages = python2Packages;
|
||||
};
|
||||
buildbot-plugins = callPackage ../development/tools/build-managers/buildbot/plugins.nix {
|
||||
pythonPackages = python2Packages;
|
||||
};
|
||||
buildbot-ui = self.buildbot.override {
|
||||
plugins = with self.buildbot-plugins; [ www ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user