Skip to content

Commit

Permalink
buildbot: use python2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Oct 17, 2016
1 parent b873241 commit 766eae3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 ];
};
Expand Down

0 comments on commit 766eae3

Please sign in to comment.