summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/urlwatch/default.nix
blob: ecd03710e3e25df4c494d472a2b578bbf7f2173a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ 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/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/
      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/information/supported_adapters.html";
        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"
      "dorimanx/exfat-nofuse"
      "rapid7/metasploit-framework"
      "GothenburgBitFactory/taskserver"
      "GothenburgBitFactory/taskwarrior"
      "mhagger/cvs2svn"
    ];
  };
}