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