growl/shell.nix

7 lines
116 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
clang-tools meson ninja gdb
];
}