slack-cli: Add missing dependencies

authored by Utku Demir and committed by Alyssa Ross 1675eaf9 fc9f994e

+3 -2
+3 -2
pkgs/tools/networking/slack-cli/default.nix
··· 5 5 # for token storage, except that it would make the Nix package inconsistent with 6 6 # upstream and other distributions. 7 7 8 - { stdenv, lib, fetchFromGitHub, curl, jq, runtimeShell }: 8 + { stdenv, lib, fetchFromGitHub, curl, jq, coreutils, gnugrep, gnused 9 + , runtimeShell }: 9 10 10 11 stdenv.mkDerivation rec { 11 12 pname = "slack-cli"; ··· 33 34 34 35 MESSAGE 35 36 36 - export PATH=${lib.makeBinPath [ curl jq ]}:"\$PATH" 37 + export PATH=${lib.makeBinPath [ curl jq coreutils gnugrep gnused ]}:"\$PATH" 37 38 exec "$out/bin/.slack-wrapped" "\$@" 38 39 WRAPPER 39 40