depot/modules/autopatch/default.nix

24 lines
467 B
Nix
Raw Normal View History

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