dotfiles/overlays/getmail6/default.nix

15 lines
242 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;
});
};
}