nixos-config/shells/gnu.nix

18 lines
440 B
Nix
Raw Normal View History

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
{ mkShell, lib, autoconf, autoconf-archive, automake, gnumake, gcc }:
mkShell {
packages = [
autoconf
autoconf-archive
automake
gnumake
gcc
];
}