Add shell.nix
This commit is contained in:
parent
58a21b1e97
commit
4b6f9f315e
1 changed files with 9 additions and 0 deletions
9
shell.nix
Normal file
9
shell.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
nativeBuildInputs = with pkgs.buildPackages; [
|
||||||
|
bmake
|
||||||
|
gcc
|
||||||
|
readline
|
||||||
|
];
|
||||||
|
shellHook = "alias make=bmake";
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue