diff options
author | lassulus <lassulus@lassul.us> | 2017-08-05 16:37:57 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-08-05 16:37:57 +0200 |
commit | 49dfb33d71007c3202790cfa35c1fde3699709e5 (patch) | |
tree | 95cff5ea0ea91ce7618e9761de9758a6f65acdc7 /krebs | |
parent | 11b9ed0c664f0633c9f27b7894cd91936aa383cb (diff) | |
parent | d1995f035a2f2317243ae257f9f1e5a1b8dfea56 (diff) |
Merge remote-tracking branch 'gum/master' into HEAD
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/5pkgs/simple/buildbot-classic-slave/default.nix | 4 | ||||
-rw-r--r-- | krebs/5pkgs/simple/buildbot-classic/default.nix | 31 |
2 files changed, 11 insertions, 24 deletions
diff --git a/krebs/5pkgs/simple/buildbot-classic-slave/default.nix b/krebs/5pkgs/simple/buildbot-classic-slave/default.nix index bbc824a6a..a48c45ae0 100644 --- a/krebs/5pkgs/simple/buildbot-classic-slave/default.nix +++ b/krebs/5pkgs/simple/buildbot-classic-slave/default.nix @@ -1,14 +1,12 @@ { coreutils, fetchgit, git, buildbot-classic, python2Packages, ... }: python2Packages.buildPythonApplication { - name = "buildbot-classic-slave-0.8.13"; + name = "buildbot-classic-slave-${buildbot-classic.version}"; namePrefix = ""; src = buildbot-classic.src; postUnpack = "sourceRoot=\${sourceRoot}/slave"; - patchPhase = ":"; - nativeBuildInputs = [ git ]; propagatedBuildInputs = [ python2Packages.twisted ]; doCheck = false; diff --git a/krebs/5pkgs/simple/buildbot-classic/default.nix b/krebs/5pkgs/simple/buildbot-classic/default.nix index f723e7255..874348181 100644 --- a/krebs/5pkgs/simple/buildbot-classic/default.nix +++ b/krebs/5pkgs/simple/buildbot-classic/default.nix @@ -1,30 +1,19 @@ -{ pkgs, fetchgit, fetchFromGitHub, python2Packages, git, ... }: +{ pkgs, fetchFromGitHub, python2Packages, git, ... }: -python2Packages.buildPythonApplication { - name = "buildbot-classic-0.8.13"; +python2Packages.buildPythonApplication rec { + name = "buildbot-classic-${version}"; + version = "0.8.14"; namePrefix = ""; patches = []; - src = fetchgit { - url = "https://github.com/krebscode/buildbot-classic"; - rev = "da5c0204e"; - sha256 = "12aaq8ir9k7n2x9m2jnpcs4rr3pcixncbd3bm36ndh93n80q1z3j"; - leaveDotGit = true; - + src = fetchFromGitHub { + owner = "krebscode"; + repo = "buildbot-classic"; + # rev = "v${version}"; + rev = "f40159404"; + sha256 = "0zyjn0bs3vbz89h1vbmn4f27vzl4zkxwnp5kdxnkczdsvpsdycks"; }; postUnpack = "sourceRoot=\${sourceRoot}/master"; - buildInputs = [ git ]; - patchPhase = - # The code insists on /usr/bin/tail, /usr/bin/make, etc. - '' echo "patching erroneous absolute path references..." - for i in $(find -name \*.py) - do - sed -i "$i" \ - -e "s|/usr/bin/python|$(type -P python)|g ; s|/usr/bin/||g" - done - - sed -i 's/==/>=/' setup.py - ''; propagatedBuildInputs = [ python2Packages.jinja2 |