916e46d7ce
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.
13 lines
244 B
Nix
13 lines
244 B
Nix
{
|
|
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 = [];
|
|
}
|