]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add missing plugin to urlwatch
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 27 Aug 2022 17:05:07 +0000 (19:05 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 9 Apr 2023 15:16:27 +0000 (17:16 +0200)
overlays/default.nix
overlays/urlwatch/default.nix [new file with mode: 0644]

index c0242f3af434ba7e65dc3faa7634b7142861627e..673d2ae2577531fc385706d4f6e7876eb5596d78 100644 (file)
@@ -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 (file)
index 0000000..4e7e5f5
--- /dev/null
@@ -0,0 +1,5 @@
+self: super: {
+  urlwatch = super.urlwatch.overridePythonAttrs(old: {
+    propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.python3Packages.pdftotext ];
+  });
+}