slack-cli: Add missing dependencies

This commit is contained in:
Utku Demir 2020-06-29 19:03:49 +12:00 committed by Alyssa Ross
parent fc9f994ee5
commit 1675eaf911

View file

@ -5,7 +5,8 @@
# for token storage, except that it would make the Nix package inconsistent with
# upstream and other distributions.
{ stdenv, lib, fetchFromGitHub, curl, jq, runtimeShell }:
{ stdenv, lib, fetchFromGitHub, curl, jq, coreutils, gnugrep, gnused
, runtimeShell }:
stdenv.mkDerivation rec {
pname = "slack-cli";
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
MESSAGE
export PATH=${lib.makeBinPath [ curl jq ]}:"\$PATH"
export PATH=${lib.makeBinPath [ curl jq coreutils gnugrep gnused ]}:"\$PATH"
exec "$out/bin/.slack-wrapped" "\$@"
WRAPPER