callisto/shell.nix

8 lines
150 B
Nix

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