Support script to download RFCs to my Kindle

Today I learned that you can email your Kindle files to read them using the
paperwhite display. I'm attempting to read RFCs, so after reading 1/4 of the way
through RFC6479 (on OAuth2.0), I realized that it might be easier to read on my
Kindle instead of on my computer screen. Out of this, rfcToKindle.go was born.

I'm not sure if I'd like to publish this or not.
This commit is contained in:
William Carroll 2020-02-02 18:32:09 +00:00
parent 4de3e5c392
commit 916e46d7ce
4 changed files with 334 additions and 0 deletions

13
rfcToKindle/default.nix Normal file
View file

@ -0,0 +1,13 @@
{
depot ? import <depot> {}, ...
}:
# TODO: This doesn't depend on `sendgmr` at the moment, but it should. As such,
# it's an imcomplete packaging.
depot.buildGo.program {
name = "rfcToKindle";
srcs = [
./main.go
];
deps = [];
}