Add shell.nix

This commit is contained in:
Jeremy Baxter 2023-07-18 10:20:32 +12:00
parent 58a21b1e97
commit 4b6f9f315e

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
bmake
gcc
readline
];
shellHook = "alias make=bmake";
}