mv buildbot{-classic,}
This commit is contained in:
parent
0c5fbfde85
commit
4044ac1286
@ -3,7 +3,7 @@
|
||||
with import <stockholm/lib>;
|
||||
let
|
||||
|
||||
buildbot = pkgs.buildbot;
|
||||
buildbot = pkgs.buildbot-classic;
|
||||
buildbot-master-config = pkgs.writeText "buildbot-master.cfg" ''
|
||||
# -*- python -*-
|
||||
from buildbot.plugins import *
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
with import <stockholm/lib>;
|
||||
let
|
||||
|
||||
pkg = pkgs.buildbot-classic-slave;
|
||||
buildbot-slave-init = pkgs.writeText "buildbot-slave.tac" ''
|
||||
import os
|
||||
|
||||
@ -153,7 +153,7 @@ let
|
||||
workdir = shell.escape cfg.workDir;
|
||||
contact = shell.escape cfg.contact;
|
||||
description = shell.escape cfg.description;
|
||||
buildbot = pkgs.buildbot-slave;
|
||||
buildbot = pkg;
|
||||
# TODO:make this
|
||||
in {
|
||||
PermissionsStartOnly = true;
|
||||
|
@ -1,14 +1,9 @@
|
||||
{ stdenv, python2Packages, fetchFromGitHub, coreutils }:
|
||||
{ stdenv, pkgs, python2Packages, fetchFromGitHub, coreutils }:
|
||||
|
||||
python2Packages.buildPythonApplication (rec {
|
||||
name = "buildbot-slave-classic-2017-07-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "krebscode";
|
||||
repo = "buildbot-classic";
|
||||
rev = "5b4f5f6f1";
|
||||
sha256 = "1j3xn1gjzvsf90jvfmyln71fzlhjx642ivrqf47zfxpkacljja93";
|
||||
};
|
||||
src = pkgs.buildbot-classic.src;
|
||||
|
||||
postUnpack = "sourceRoot=\${sourceRoot}/slave";
|
||||
|
Loading…
Reference in New Issue
Block a user