summaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/lego.nix9
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 @@
1prev: final: let
2 zerossl = prev.fetchpatch {
3 url = "https://patch-diff.githubusercontent.com/raw/go-acme/lego/pull/1501.patch";
4 };
5in {
6 lego = prev.lego.overrideDerivation (oldAttrs: {
7 patches = oldAttrs.patches ++ [zerossl];
8 });
9}