nixpkgs/pkgs/applications/networking/instant-messengers/slack-term/default.nix
2018-11-01 11:17:05 -05:00

24 lines
633 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
# https://github.com/erroneousboat/slack-term
name = "slack-term-${version}";
version = "0.4.1";
goPackagePath = "github.com/erroneousboat/slack-term";
src = fetchFromGitHub {
owner = "erroneousboat";
repo = "slack-term";
rev = "v${version}";
sha256 = "1340bq7h31fxykxbxpn6hv7n2hmjf20f8vg5gan9pjf5jaa6kfza";
};
meta = with stdenv.lib; {
description = "Slack client for your terminal";
homepage = https://github.com/erroneousboat/slack-term;
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}