about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tools/eaglemode/commands/B.nix23
-rw-r--r--tools/eaglemode/commands/plan9.tgabin0 -> 5926 bytes
-rw-r--r--users/emery/eaglemode/default.nix11
3 files changed, 34 insertions, 0 deletions
diff --git a/tools/eaglemode/commands/B.nix b/tools/eaglemode/commands/B.nix
new file mode 100644
index 000000000000..bca3d3a87a87
--- /dev/null
+++ b/tools/eaglemode/commands/B.nix
@@ -0,0 +1,23 @@
+{ depot, pkgs, ... }:
+
+let
+  em = depot.tools.eaglemode;
+in
+em.mkCommand {
+  name = "9 B";
+  hotkey = "Ctrl+E";
+  icon = "${./plan9.tga}";
+
+  description = ''
+    Plumb target to Sam or Acme
+  '';
+
+  code = ''
+    ErrorIfNotSingleTarget();
+
+    my @tgt=GetTgt();
+    my $dir=$tgt[0];
+
+    ExecOrError('${pkgs.plan9port}/bin/9', 'B', $dir);
+  '';
+}
diff --git a/tools/eaglemode/commands/plan9.tga b/tools/eaglemode/commands/plan9.tga
new file mode 100644
index 000000000000..55d002221a9b
--- /dev/null
+++ b/tools/eaglemode/commands/plan9.tga
Binary files differdiff --git a/users/emery/eaglemode/default.nix b/users/emery/eaglemode/default.nix
new file mode 100644
index 000000000000..c4b51a4e7c0c
--- /dev/null
+++ b/users/emery/eaglemode/default.nix
@@ -0,0 +1,11 @@
+# Derivation for my fully configured Eagle Mode.
+{ depot, ... }:
+
+let
+  config = depot.tools.eaglemode.etcDir {
+    extraPaths = [ depot.tools.eaglemode.commands.B ];
+  };
+in
+depot.tools.eaglemode.withConfig {
+  inherit config;
+}