callisto/shell.nix

9 lines
161 B
Nix

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