blueis/shell.nix
2026-04-10 14:28:55 +03:00

9 lines
119 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
gcc
ccls
bear
boost
];
}