mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
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;
|
||
|
});
|
||
|
};
|
||
|
}
|