12 lines
138 B
Nix
12 lines
138 B
Nix
|
|
with import <nixpkgs> {};
|
||
|
|
mkShell {
|
||
|
|
packages = [
|
||
|
|
gnumake
|
||
|
|
libgcc
|
||
|
|
bsd-finger
|
||
|
|
];
|
||
|
|
shellHook = ''
|
||
|
|
|
||
|
|
'';
|
||
|
|
}
|