mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
24 lines
625 B
Nix
24 lines
625 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
# https://github.com/erroneousboat/slack-term
|
|
pname = "slack-term";
|
|
version = "0.5.0";
|
|
|
|
goPackagePath = "github.com/erroneousboat/slack-term";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "erroneousboat";
|
|
repo = "slack-term";
|
|
rev = "v${version}";
|
|
sha256 = "1fbq7bdhy70hlkklppimgdjamnk0v059pg73xm9ax1f4616ki1m6";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Slack client for your terminal";
|
|
homepage = "https://github.com/erroneousboat/slack-term";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|