mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #49603 from dtzWill/feature/slack-term
slack-term: init at 0.4.1
This commit is contained in:
commit
386691027f
@ -0,0 +1,23 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -17240,6 +17240,8 @@ with pkgs;
|
||||
|
||||
slack-cli = callPackage ../tools/networking/slack-cli { };
|
||||
|
||||
slack-term = callPackage ../applications/networking/instant-messengers/slack-term { };
|
||||
|
||||
singularity = callPackage ../applications/virtualization/singularity { };
|
||||
|
||||
spectmorph = callPackage ../applications/audio/spectmorph { };
|
||||
|
Loading…
Reference in New Issue
Block a user