about summary refs log tree commit diff
path: root/tools/rfcToKindle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rfcToKindle/default.nix')
-rw-r--r--tools/rfcToKindle/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/rfcToKindle/default.nix b/tools/rfcToKindle/default.nix
new file mode 100644
index 000000000000..3bfa71f2896d
--- /dev/null
+++ b/tools/rfcToKindle/default.nix
@@ -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 = [];
+}