nixpkgs/pkgs/tools/networking/slack-cli/default.nix
2018-08-15 15:47:24 +01:00

34 lines
899 B
Nix

# slack-cli must be configured using the SLACK_CLI_TOKEN environment variable.
# Using `slack init` will not work because it tries to write to the Nix store.
#
# There is no reason that we couldn't change the file path that slack-cli uses
# for token storage, except that it would make the Nix package inconsistent with
# upstream and other distributions.
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "slack-cli-${version}";
version = "0.18.0";
src = fetchFromGitHub {
owner = "rockymadden";
repo = "slack-cli";
rev = "v${version}";
sha256 = "022yr3cpfg0v7cxi62zzk08vp0l3w851qpfh6amyfgjiynnfyddl";
};
dontBuild = true;
installPhase = ''
mkdir -p "$out/bin"
cp src/slack "$out/bin"
'';
meta = {
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.qyliss ];
platforms = stdenv.lib.platforms.unix;
};
}