Add gnu devshell for GNU projects

This commit is contained in:
Gabriel Arazas 2022-01-17 14:51:41 +08:00
parent e152559256
commit 06db2633f5
2 changed files with 18 additions and 0 deletions

View File

@ -2,6 +2,7 @@
with pkgs; {
flatpak = callPackage ./flatpak.nix { };
gnu = callPackage ./gnu.nix { };
hugo = callPackage ./hugo.nix { };
rust = callPackage ./rust.nix { };
tic-80 = callPackage ./tic-80.nix { };

17
shells/gnu.nix Normal file
View File

@ -0,0 +1,17 @@
# 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
];
}