about summary refs log tree commit diff
path: root/overlays/patches/gnupg/default.nix
blob: 35000019c0b0105b8b2b4836f86e59cc6abb71a8 (plain) (blame)
1
2
3
4
5
6
7
8
{ gnupg, ... } @ args:

(gnupg.override (builtins.removeAttrs args [ "gnupg" ])).overrideAttrs (
  { patches ? [], ... }:
  {
    patches = patches ++ [ ./VERY-BAD-allow-signing-with-expired-keys.patch ];
  }
)