diff options
Diffstat (limited to 'overlays/lego.nix')
-rw-r--r-- | overlays/lego.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/overlays/lego.nix b/overlays/lego.nix new file mode 100644 index 00000000..0c2811df --- /dev/null +++ b/overlays/lego.nix | |||
@@ -0,0 +1,9 @@ | |||
1 | prev: final: let | ||
2 | zerossl = prev.fetchpatch { | ||
3 | url = "https://patch-diff.githubusercontent.com/raw/go-acme/lego/pull/1501.patch"; | ||
4 | }; | ||
5 | in { | ||
6 | lego = prev.lego.overrideDerivation (oldAttrs: { | ||
7 | patches = oldAttrs.patches ++ [zerossl]; | ||
8 | }); | ||
9 | } | ||