From: Ismaƫl Bouya Date: Sat, 27 Aug 2022 17:05:07 +0000 (+0200) Subject: Add missing plugin to urlwatch X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=3386ee184e4473bd9c972cf28ef7f03e74e00e93;p=perso%2FImmae%2FConfig%2FNix.git Add missing plugin to urlwatch --- diff --git a/overlays/default.nix b/overlays/default.nix index c0242f3..673d2ae 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -47,5 +47,6 @@ in flakes // { khal = import ./khal; nix-direnv = import ./nix-direnv; morph = import ./morph; + urlwatch = import ./urlwatch; } // import ./python-packages diff --git a/overlays/urlwatch/default.nix b/overlays/urlwatch/default.nix new file mode 100644 index 0000000..4e7e5f5 --- /dev/null +++ b/overlays/urlwatch/default.nix @@ -0,0 +1,5 @@ +self: super: { + urlwatch = super.urlwatch.overridePythonAttrs(old: { + propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.python3Packages.pdftotext ]; + }); +}