callisto/shell.nix
2023-07-18 10:20:32 +12:00

9 lines
159 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
bmake
gcc
readline
];
shellHook = "alias make=bmake";
}