mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
13 lines
233 B
Nix
13 lines
233 B
Nix
{lib, ...}: let
|
|
inherit
|
|
(lib)
|
|
singleton
|
|
;
|
|
in {
|
|
flake.overlays.getmail6 = final: prev: {
|
|
getmail6 = prev.getmail6.overrideAttrs (old: {
|
|
patches = singleton ./getmail-read-exec-from-path.patch;
|
|
});
|
|
};
|
|
}
|