summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/buildbot
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-07-07 21:24:37 +0200
committerlassulus <lass@aidsballs.de>2016-07-07 21:32:21 +0200
commit4cd09fa26b79dea323e6c7fb4d41eb4eb3440972 (patch)
tree3f6b3220c17f683be2d387254b9692ff3d45f551 /krebs/3modules/buildbot
parent8b829fdfa1e90635b1681ec9f466fcdc5d6e8f7e (diff)
k 3 buildbot: use last working nixpkgs
Diffstat (limited to 'krebs/3modules/buildbot')
-rw-r--r--krebs/3modules/buildbot/master.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/krebs/3modules/buildbot/master.nix b/krebs/3modules/buildbot/master.nix
index f23981f4..bd17c376 100644
--- a/krebs/3modules/buildbot/master.nix
+++ b/krebs/3modules/buildbot/master.nix
@@ -3,13 +3,14 @@
with config.krebs.lib;
let
- nixpkgs-1509 = import (pkgs.fetchFromGitHub {
- owner = "NixOS"; repo = "nixpkgs-channels";
- rev = "91371c2bb6e20fc0df7a812332d99c38b21a2bda";
- sha256 = "1as1i0j9d2n3iap9b471y4x01561r2s3vmjc5281qinirlr4al73";
+ # https://github.com/NixOS/nixpkgs/issues/14026
+ nixpkgs-fix = import (pkgs.fetchgit {
+ url = https://github.com/nixos/nixpkgs;
+ rev = "e026b5c243ea39810826e68362718f5d703fb5d0";
+ sha256 = "87e0724910a6df0371f883f99a8cf42e366fb4119f676f6f74ffb404beca2632";
}) {};
- buildbot = nixpkgs-1509.buildbot;
+ buildbot = nixpkgs-fix.buildbot;
buildbot-master-config = pkgs.writeText "buildbot-master.cfg" ''
# -*- python -*-
from buildbot.plugins import *