diff options
Diffstat (limited to 'users/wpcarro/tools/rfcToKindle/default.nix')
-rw-r--r-- | users/wpcarro/tools/rfcToKindle/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/users/wpcarro/tools/rfcToKindle/default.nix b/users/wpcarro/tools/rfcToKindle/default.nix new file mode 100644 index 000000000000..8fb93c3bb5b8 --- /dev/null +++ b/users/wpcarro/tools/rfcToKindle/default.nix @@ -0,0 +1,11 @@ +{ 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 = []; +} |