mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
buildbot: use python2
This commit is contained in:
parent
212ce1c3b8
commit
8e8800884c
1 changed files with 9 additions and 3 deletions
|
@ -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 a new issue