diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/2configs/urlwatch/default.nix | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/2configs/urlwatch/default.nix')
-rw-r--r-- | makefu/2configs/urlwatch/default.nix | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/makefu/2configs/urlwatch/default.nix b/makefu/2configs/urlwatch/default.nix deleted file mode 100644 index e6952fdbc..000000000 --- a/makefu/2configs/urlwatch/default.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ config, lib, ... }: - -let - grss = name: { #github rss feed - url = "https://github.com/${name}/releases.atom"; - filter = "grepi:(<updated|<media.thumbnail|Continuous build|Travis CI build log:)"; - }; - lidl = url: { - inherit url; - filter = "element-by-id:articledetail,html2text"; - }; -in { - krebs.urlwatch = { - enable = true; - mailto = config.krebs.users.makefu.mail; - onCalendar = "*-*-* 03,15:13:37"; - hooksFile = ./hook.py; - urls = [ - ## nixpkgs maintenance - # github - ## No rate limit - - ## rate limited - # https://api.github.com/repos/mcepl/gen-oath-safe/commits - https://api.github.com/repos/naim94a/udpt/commits - https://api.github.com/repos/dirkvdb/ps3netsrv--/commits - - # pypi - https://pypi.python.org/simple/bepasty/ - https://pypi.python.org/simple/devpi-client/ - https://pypi.python.org/simple/sqlalchemy_migrate/ - https://pypi.python.org/simple/xstatic/ - https://pypi.python.org/simple/pyserial/ - https://pypi.python.org/simple/semantic_version/ - # weird shit - #{ url = "https://www.zigbee2mqtt.io/guide/adapters/"; - # filter = "html2text"; - #} - http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/ - https://erdgeist.org/gitweb/opentracker/info/refs?service=git-upload-pack - - http://www.iozone.org/src/current/ - - #{ - # url = https://newellrubbermaid.secure.force.com/dymopkb/articles/en_US/FAQ/Dymo-Drivers-and-Downloads/?l=en_US&c=Segment:Dymo&fs=Search&pn=1 ; - # filter = "grep:Software/Linux/dymo-cups-drivers"; - #} - - # shopping - - # TODO: dymo cups - - ] ++ map grss [ - "amadvance/snapraid" - "radare/radare2" - "ovh/python-ovh" - "embray/d2to1" - "vicious-widgets/vicious" - "embray/d2to1" - "rapid7/metasploit-framework" - "GothenburgBitFactory/taskserver" - "GothenburgBitFactory/taskwarrior" - "mhagger/cvs2svn" - ]; - }; -} - |