aboutsummaryrefslogtreecommitdiff
path: root/gui/pkgs/uictrl.nix
diff options
context:
space:
mode:
Diffstat (limited to 'gui/pkgs/uictrl.nix')
-rw-r--r--gui/pkgs/uictrl.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/gui/pkgs/uictrl.nix b/gui/pkgs/uictrl.nix
new file mode 100644
index 0000000..0c965ad
--- /dev/null
+++ b/gui/pkgs/uictrl.nix
@@ -0,0 +1,9 @@
+{ stdenv, pkgs, ... }:
+
+pkgs.writeTextFile {
+ name = "uictrl";
+ executable = true;
+ destination = "/bin/uictrl";
+
+ text = builtins.readFile ./bin/uictrl.sh;
+}