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