shells/gnu: add more tools in the shell

This commit is contained in:
Gabriel Arazas 2022-06-23 17:02:04 +08:00
parent 83e7651236
commit 9588857d5a

View File

@ -4,7 +4,7 @@
# It's a good thing they have documented the full details in one of their
# manuals at
# https://www.gnu.org/software/automake/manual/html_node/GNU-Build-System.html
{ mkShell, lib, autoconf, autoconf-archive, automake, gnumake, gcc, gettext, coreutils, pkg-config }:
{ mkShell, lib, autoconf, autoconf-archive, automake, gnumake, gcc, gettext, coreutils, pkg-config, help2man, texinfo }:
mkShell {
packages = [
@ -14,6 +14,8 @@ mkShell {
coreutils
gettext
gcc
help2man
texinfo
pkg-config
];
}