Skip to content

Commit 9d931d5

Browse files
committed
packages/buildbot: remove patch, included in 4.3
1 parent 5181f1d commit 9d931d5

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

nixosModules/master.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -648,10 +648,10 @@ in
648648

649649
assertions = [
650650
{
651-
assertion = lib.versionAtLeast packages.buildbot.version "4.0.0";
651+
assertion = lib.versionAtLeast packages.buildbot.version "4.3.0";
652652
message = ''
653-
`buildbot-nix` requires `buildbot` 4.0.0 or greater to function.
654-
Set services.buildbot-nix.packages.buildbot to a nixpkgs with buildbot >= 4.0.0,
653+
`buildbot-nix` requires `buildbot` 4.3.0 or greater to function.
654+
Set services.buildbot-nix.packages.buildbot to a nixpkgs with buildbot >= 4.3.0,
655655
i.e. nixpkgs-unstable.
656656
'';
657657
}

packages/buildbot.nix

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
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-
})
1+
{ buildbot, fetchpatch }: buildbot

0 commit comments

Comments
 (0)