Files
itc.betriebssysteme/shell.nix

13 lines
172 B
Nix
Raw Normal View History

2025-10-20 09:40:01 +02:00
with import <nixpkgs> {};
mkShell {
packages = [
gnumake
libgcc
2025-12-01 11:43:22 +01:00
llvmPackages_20.clang-tools
2025-10-20 09:40:01 +02:00
bsd-finger
];
shellHook = ''
'';
}