summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorandys8 <andys8@users.noreply.github.com>2020-12-19 11:25:45 +0100
committerandys8 <andys8@users.noreply.github.com>2020-12-19 21:56:55 +0100
commitfb5b36afc61a20515fd86cf2e4aad7f806e468ca (patch)
tree1d2ee813f3dd54e8109121735b35e33d73434b2c /pkgs/applications
parent8d3f49ac0f1d76a7fbe5042f26d74413852c88f4 (diff)
downloadnixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar.gz
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar.bz2
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar.lz
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar.xz
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.tar.zst
nixpkgs-fb5b36afc61a20515fd86cf2e4aad7f806e468ca.zip
tty-share: init at 2.0.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/tty-share/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tty-share/default.nix b/pkgs/applications/misc/tty-share/default.nix
new file mode 100644
index 00000000000..a9fcb969f67
--- /dev/null
+++ b/pkgs/applications/misc/tty-share/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+# Upstream has a `./vendor` directory with all deps which we rely upon.
+buildGoPackage rec {
+  pname = "tty-share";
+  version = "2.0.0";
+
+  src = fetchFromGitHub {
+    owner = "elisescu";
+    repo = "tty-share";
+    rev = "v${version}";
+    sha256 = "1d2vd3d1lb4n0jq4s0p5mii1vz4r3z36hykr5mnx53srsni1wsj5";
+  };
+
+  goPackagePath = "github.com/elisescu/tty-share";
+
+  meta = with stdenv.lib; {
+    homepage = "https://tty-share.com";
+    description = "Share terminal via browser for remote work or shared sessions";
+    platforms = platforms.linux;
+    license = licenses.mit;
+    maintainers = with maintainers; [ andys8 ];
+  };
+}