2022-01-17 06:51:41 +00:00
|
|
|
# The GNU build system. Commonly used for projects at GNU and anyone who wants
|
|
|
|
# to be a GNU fanatic.
|
|
|
|
#
|
|
|
|
# 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
|
2022-07-16 09:24:38 +00:00
|
|
|
{ mkShell
|
|
|
|
, lib
|
|
|
|
, autoconf
|
|
|
|
, autoconf-archive
|
|
|
|
, automake
|
|
|
|
, gnumake
|
|
|
|
, gcc
|
|
|
|
, gettext
|
|
|
|
, coreutils
|
|
|
|
, pkg-config
|
|
|
|
, help2man
|
|
|
|
, texinfo
|
|
|
|
}:
|
2022-01-17 06:51:41 +00:00
|
|
|
|
|
|
|
mkShell {
|
|
|
|
packages = [
|
|
|
|
autoconf
|
|
|
|
autoconf-archive
|
|
|
|
automake
|
2022-01-25 01:32:17 +00:00
|
|
|
coreutils
|
|
|
|
gettext
|
2022-01-17 06:51:41 +00:00
|
|
|
gcc
|
2022-06-23 09:02:04 +00:00
|
|
|
help2man
|
|
|
|
texinfo
|
2022-01-25 01:32:17 +00:00
|
|
|
pkg-config
|
2022-01-17 06:51:41 +00:00
|
|
|
];
|
2022-11-10 14:08:22 +00:00
|
|
|
|
|
|
|
inputsFrom = [ gcc ];
|
2022-01-17 06:51:41 +00:00
|
|
|
}
|