aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix
new file mode 100644
index 000000000000..e964c654c708
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/networking/instant-messengers/ssh-chat/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ pname = "ssh-chat";
+ version = "1.10";
+
+ goPackagePath = "github.com/shazow/ssh-chat";
+
+ src = fetchFromGitHub {
+ owner = "shazow";
+ repo = "ssh-chat";
+ rev = "v${version}";
+ sha256 = "e4COAyheY+mE5zltR1Ms2OJ3I8iG/N1CZ6D7I9PDW5U=";
+ };
+
+ goDeps = ./deps.nix;
+
+ meta = with lib; {
+ description = "Chat over SSH";
+ homepage = "https://github.com/shazow/ssh-chat";
+ license = licenses.mit;
+ maintainers = with maintainers; [ luc65r ];
+ };
+}