mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Add gnu
devshell for GNU projects
This commit is contained in:
parent
e152559256
commit
06db2633f5
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
with pkgs; {
|
with pkgs; {
|
||||||
flatpak = callPackage ./flatpak.nix { };
|
flatpak = callPackage ./flatpak.nix { };
|
||||||
|
gnu = callPackage ./gnu.nix { };
|
||||||
hugo = callPackage ./hugo.nix { };
|
hugo = callPackage ./hugo.nix { };
|
||||||
rust = callPackage ./rust.nix { };
|
rust = callPackage ./rust.nix { };
|
||||||
tic-80 = callPackage ./tic-80.nix { };
|
tic-80 = callPackage ./tic-80.nix { };
|
||||||
|
17
shells/gnu.nix
Normal file
17
shells/gnu.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user