Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3b4e26b4e388
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af0d1f955fe1
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jul 7, 2020

  1. ssh-chat: init at 1.9

    luc65r authored and ehmry committed Jul 7, 2020
    Copy the full SHA
    af0d1f9 View commit details
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ 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 ];
platforms = platforms.all;
};
}
84 changes: 84 additions & 0 deletions pkgs/applications/networking/instant-messengers/ssh-chat/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -6780,6 +6780,8 @@ in

sshping = callPackage ../tools/networking/sshping {};

ssh-chat = callPackage ../applications/networking/instant-messengers/ssh-chat { };

suricata = callPackage ../applications/networking/ids/suricata {
python = python3;
};