forked from M-Labs/nix-scripts
nixbld: centralize package overrides
This commit is contained in:
parent
45c2ce2f0c
commit
e7eedf0f48
|
@ -130,10 +130,6 @@ ACTION=="add", SUBSYSTEM=="tty", \
|
||||||
];
|
];
|
||||||
services.hydra = {
|
services.hydra = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.hydra.overrideAttrs(oa: {
|
|
||||||
patches = oa.patches ++ [ ./hydra-conda.patch ./hydra-retry.patch ];
|
|
||||||
hydraPath = oa.hydraPath + ":" + pkgs.lib.makeBinPath [ pkgs.jq ];
|
|
||||||
});
|
|
||||||
useSubstitutes = true;
|
useSubstitutes = true;
|
||||||
hydraURL = "https://nixbld.m-labs.hk";
|
hydraURL = "https://nixbld.m-labs.hk";
|
||||||
notificationSender = "hydra@m-labs.hk";
|
notificationSender = "hydra@m-labs.hk";
|
||||||
|
@ -200,7 +196,13 @@ ACTION=="add", SUBSYSTEM=="tty", \
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.config.packageOverrides = super: let self = super.pkgs; in {
|
nixpkgs.config.packageOverrides = super: let self = super.pkgs; in {
|
||||||
matterbridge = super.matterbridge.overrideAttrs(oa: { patches = [ ./matterbridge-disable-github.patch ]; });
|
hydra = super.hydra.overrideAttrs(oa: {
|
||||||
|
patches = oa.patches ++ [ ./hydra-conda.patch ./hydra-retry.patch ];
|
||||||
|
hydraPath = oa.hydraPath + ":" + super.lib.makeBinPath [ super.jq ];
|
||||||
|
});
|
||||||
|
matterbridge = super.matterbridge.overrideAttrs(oa: {
|
||||||
|
patches = [ ./matterbridge-disable-github.patch ];
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
security.acme.certs = {
|
security.acme.certs = {
|
||||||
|
|
Loading…
Reference in New Issue