about summary refs log tree commit diff
path: root/users/wpcarro/tools/rfcToKindle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/tools/rfcToKindle/default.nix')
-rw-r--r--users/wpcarro/tools/rfcToKindle/default.nix11
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 0000000000..ca87abdee0
--- /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.nix.buildGo.program {
+  name = "rfcToKindle";
+  srcs = [
+    ./main.go
+  ];
+  deps = [ ];
+}