diff options
author | lassulus <lassulus@lassul.us> | 2021-12-08 15:59:59 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-12-08 16:15:40 +0100 |
commit | b48f08ea8e1b19e1c05096e6187b4bfb56567e47 (patch) | |
tree | a1598ef58dd3c1983f9a19b7a251c2f0a4aab5ba /krebs/5pkgs/simple/buildbot-classic/default.nix | |
parent | 8ce4141683a625a033cee4c7546eacc3b41b4029 (diff) |
ci: buildbot-classic -> buildbot; cleanup
Diffstat (limited to 'krebs/5pkgs/simple/buildbot-classic/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/buildbot-classic/default.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/krebs/5pkgs/simple/buildbot-classic/default.nix b/krebs/5pkgs/simple/buildbot-classic/default.nix deleted file mode 100644 index 5e075f1a1..000000000 --- a/krebs/5pkgs/simple/buildbot-classic/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ pkgs, fetchFromGitHub, python2Packages, git, ... }: let - - # we need the old sqlparse since the new one is python2 incompatible - sqlparse = python2Packages.callPackage ./sqlparse.nix {}; - -in python2Packages.buildPythonApplication rec { - name = "buildbot-classic-${version}"; - version = "0.8.18"; - namePrefix = ""; - patches = []; - - src = fetchFromGitHub { - owner = "krebs"; - repo = "buildbot-classic"; - rev = version; - sha256 = "0b4y3n9zd2gdy8xwk1vpvs4n9fbg72vi8mx4ydgijwngcmdqkjmq"; - }; - postUnpack = "sourceRoot=\${sourceRoot}/master"; - - propagatedBuildInputs = [ - python2Packages.jinja2 - python2Packages.twisted - python2Packages.dateutil - (python2Packages.sqlalchemy_migrate.override { sqlparse = sqlparse; }) - python2Packages.pysqlite - pkgs.coreutils - ]; - doCheck = false; - postInstall = '' - mkdir -p "$out/share/man/man1" - cp docs/buildbot.1 "$out/share/man/man1" - ''; -} - |