Skip to content

Commit 0ed3236

Browse files
committed
add skipBuildIf patch
1 parent 8a50a4b commit 0ed3236

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

nix/packages.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ in
1818

1919
buildbot = lib.mkOption {
2020
type = lib.types.package;
21-
default = pkgs.buildbot;
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+
});
2230
};
2331

2432
buildbot-worker = lib.mkOption {

0 commit comments

Comments
 (0)