diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-08-25 22:38:10 +0200 |
---|---|---|
committer | Anastasia Klimchuk <aklm@chromium.org> | 2022-08-31 02:58:13 +0000 |
commit | 650f0824310fb3b70dd5bfa259fc28aedae877c5 (patch) | |
tree | ffb661b9e8bc6167a838694d6cee3ccd8e4edff7 /util | |
parent | c9db744f787c00064681aed096e30ca684db589e (diff) | |
download | flashrom-650f0824310fb3b70dd5bfa259fc28aedae877c5.tar.gz flashrom-650f0824310fb3b70dd5bfa259fc28aedae877c5.tar.bz2 flashrom-650f0824310fb3b70dd5bfa259fc28aedae877c5.zip |
util/shell.nix: Explicitly install gnumake and GCC packages
Even if both packages are provided by stdenv, add the packages gnumake
and GCC to buildInputs so that the list of (build-) dependencies is
complete.
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I683eb0459404738a501a57d4301a90a6e3b46f93
Reviewed-on: https://review.coreboot.org/c/flashrom/+/67087
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Thomas Heijligen <src@posteo.de>
Diffstat (limited to 'util')
-rw-r--r-- | util/shell.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/shell.nix b/util/shell.nix index 906e1fc9..987777c3 100644 --- a/util/shell.nix +++ b/util/shell.nix @@ -5,6 +5,8 @@ stdenv.mkDerivation { buildInputs = [ cmocka + gcc + gnumake libftdi1 libjaylink libusb1 |