depot/modules/autopatch/default.nix

17 lines
282 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 = [
(self: super:
(let
patched = import ../../packages/patched-derivations.nix super;
in {
2022-06-18 22:02:42 +03:00
inherit (patched) sssd tempo;
2021-10-16 15:26:00 +03:00
2022-05-27 16:58:57 +03:00
jre_headless = patched.jre17_standard;
2021-06-05 23:59:06 +03:00
})
)
];
}