File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 18
18
19
19
buildbot = lib . mkOption {
20
20
type = lib . types . package ;
21
- default = pkgs . buildbot . overrideAttrs ( o : {
22
- patches = o . patches ++ [
23
- ( pkgs . fetchpatch {
24
- name = "add-Build.skipBuildIf.patch" ;
25
- url = "https://github.com/buildbot/buildbot/commit/f08eeef96e15c686a4f6ad52368ad08246314751.patch" ;
26
- hash = "sha256-ACPYXMbjIfw02gsKwmDKIIZkGSxxLWCaW7ceEcgbtIU=" ;
27
- } )
28
- ] ;
29
- } ) ;
21
+ default = pkgs . callPackage ../packages/buildbot.nix { } ;
30
22
} ;
31
23
32
24
buildbot-worker = lib . mkOption {
Original file line number Diff line number Diff line change
1
+ { buildbot , fetchpatch } :
2
+ buildbot . overrideAttrs ( o : {
3
+ patches = o . patches ++ [
4
+ ( fetchpatch {
5
+ name = "add-Build.skipBuildIf.patch" ;
6
+ url = "https://github.com/buildbot/buildbot/commit/f08eeef96e15c686a4f6ad52368ad08246314751.patch" ;
7
+ hash = "sha256-ACPYXMbjIfw02gsKwmDKIIZkGSxxLWCaW7ceEcgbtIU=" ;
8
+ } )
9
+ ] ;
10
+ } )
Original file line number Diff line number Diff line change 9
9
packages =
10
10
{
11
11
# useful for checking what buildbot version is used.
12
- buildbot = pkgs . buildbot ;
12
+ buildbot = pkgs . callPackage ./ buildbot.nix { } ;
13
13
buildbot-nix = pkgs . python3 . pkgs . callPackage ./buildbot-nix.nix { } ;
14
14
buildbot-gitea = pkgs . python3 . pkgs . callPackage ./buildbot-gitea.nix {
15
15
buildbot = pkgs . buildbot ;
You can’t perform that action at this time.
0 commit comments