mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
62d4c68f62
Signed-off-by: Magic_RB <magic_rb@redalder.org>
15 lines
242 B
Nix
15 lines
242 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;
|
|
});
|
|
};
|
|
}
|