Cleanup Overlays

This commit is contained in:
2024-05-04 16:13:09 -04:00
parent e9f36c71ce
commit 683f19d596
3 changed files with 16 additions and 16 deletions

13
overlays/hydra.nix Normal file
View File

@@ -0,0 +1,13 @@
(final: prev: {
hydra_unstable = prev.hydra_unstable.overrideAttrs
(old: {
doCheck = false;
patches = [
(final.fetchpatch {
name = "hydra-gitea-push-patch";
url = "https://patch-diff.githubusercontent.com/raw/NixOS/hydra/pull/1227.patch";
sha256 = "A4dN/4zLMKLYaD38lu87lzAWH/3EUM7G5njx7Q4W47w=";
})
];
});
});