mv buildbot{-classic,}

This commit is contained in:
makefu 2017-07-24 10:49:31 +02:00
parent 0c5fbfde85
commit 4044ac1286
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
4 changed files with 5 additions and 10 deletions

View File

@ -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 *

View File

@ -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;

View File

@ -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";