2021-02-04 13:25:56 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-21 17:21:53 +00:00
|
|
|
|
2021-02-04 13:25:56 +00:00
|
|
|
buildGoModule rec {
|
2020-04-21 17:21:53 +00:00
|
|
|
pname = "ssh-chat";
|
2021-02-04 13:25:56 +00:00
|
|
|
version = "1.10.1";
|
2020-04-21 17:21:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shazow";
|
|
|
|
repo = "ssh-chat";
|
|
|
|
rev = "v${version}";
|
2021-02-04 13:25:56 +00:00
|
|
|
sha256 = "LgrqIuM/tLC0JqDai2TLu6G/edZ5Q7WFXjX5bzc0Bcc=";
|
2020-04-21 17:21:53 +00:00
|
|
|
};
|
|
|
|
|
2021-02-04 13:25:56 +00:00
|
|
|
vendorSha256 = "QTUBorUAsWDOpNP3E/Y6ht7ZXZViWBbrMPtLl7lHtgE=";
|
2020-04-21 17:21:53 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Chat over SSH";
|
|
|
|
homepage = "https://github.com/shazow/ssh-chat";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ luc65r ];
|
|
|
|
};
|
|
|
|
}
|