forked from mirrors/nixpkgs
slack-cli: Add missing dependencies
This commit is contained in:
parent
fc9f994ee5
commit
1675eaf911
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue