growl/shell.nix
2026-01-22 11:56:01 -03:00

19 lines
211 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
clang-tools
bear
gdb
tinycc
meson
ninja
rlwrap
hyperfine
valgrind
muon
samurai
];
}