depot/modules/autopatch/default.nix

28 lines
643 B
Nix
Raw Normal View History

2021-08-23 21:49:13 +03:00
{ pkgs, lib, config, inputs, ... }:
2021-06-05 23:59:06 +03:00
{
nixpkgs.overlays = [
2021-08-23 21:49:13 +03:00
(self: super: { flakePackages = inputs.self.packages.${pkgs.system}; })
2021-06-05 23:59:06 +03:00
(self: super:
(let
patched = import ../../packages/patched-derivations.nix super;
in {
ipfs = patched.lain-ipfs;
hydra-unstable = patched.hydra;
2022-03-13 00:16:38 +02:00
inherit (patched) sssd;
2021-10-16 15:26:00 +03:00
2022-05-27 16:58:57 +03:00
jre = patched.jre17_standard;
jre_headless = patched.jre17_standard;
2021-06-05 23:59:06 +03:00
} // lib.optionalAttrs config.krb5.enable {
bind = patched.kerberized-bind;
dnsutils = patched.kerberized-dnsutils;
dig = patched.kerberized-dig;
})
)
];
}