stockholm/makefu/2configs/urlwatch/default.nix

59 lines
1.8 KiB
Nix
Raw Normal View History

{ config, lib, ... }:
2015-08-17 21:24:37 +00:00
2017-08-16 10:11:24 +00:00
let
grss = name: { #github rss feed
url = "https://github.com/${name}/releases.atom";
filter = "grepi:(<updated|<media.thumbnail)";
};
in {
2015-08-17 21:24:37 +00:00
krebs.urlwatch = {
enable = true;
mailto = config.krebs.users.makefu.mail;
onCalendar = "*-*-* 05:00:00";
2017-07-02 21:06:36 +00:00
hooksFile = ./hook.py;
2015-08-17 21:24:37 +00:00
urls = [
## nixpkgs maintenance
2017-07-02 21:09:12 +00:00
# github
## No rate limit
2017-08-16 10:11:24 +00:00
2017-07-02 21:09:12 +00:00
## rate limited
# https://api.github.com/repos/dorimanx/exfat-nofuse/commits
# 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/
2017-07-02 21:06:36 +00:00
https://pypi.python.org/simple/devpi-client/
2017-09-23 13:23:15 +00:00
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/
2017-07-02 21:09:12 +00:00
# weird shit
http://guest:derpi@cvs2svn.tigris.org/svn/cvs2svn/tags/
2016-01-22 23:22:56 +00:00
http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/
2016-10-28 12:09:58 +00:00
https://erdgeist.org/gitweb/opentracker/info/refs?service=git-upload-pack
2017-10-02 07:59:30 +00:00
http://www.iozone.org/src/current/
2017-07-02 21:06:36 +00:00
2017-07-02 21:09:12 +00:00
{
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";
}
# TODO: dymo cups
2017-08-16 10:11:24 +00:00
] ++ map grss [
"amadvance/snapraid"
"radare/radare2"
"ovh/python-ovh"
"embray/d2to1"
"Mic92/vicious"
"embray/d2to1"
"dorimanx/exfat-nofuse"
"rapid7/metasploit-framework"
"GothenburgBitFactory/taskserver"
"GothenburgBitFactory/taskwarrior"
2015-08-17 21:24:37 +00:00
];
};
}