depot/modules/autopatch/default.nix

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