dotfiles/overlays/getmail6/default.nix

13 lines
233 B
Nix
Raw Normal View History

{lib, ...}: let
inherit
(lib)
singleton
;
in {
flake.overlays.getmail6 = final: prev: {
getmail6 = prev.getmail6.overrideAttrs (old: {
patches = singleton ./getmail-read-exec-from-path.patch;
});
};
}