aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix/shell/meson.nix
blob: 8c06eb8d3be66d33a04a7d0dcc59ef1c126a9b8f (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    (import ../pkgs/meson-pkgs.nix { inherit pkgs; })
  ];
  shellHook = ''
    meson setup --wipe build && ninja -v -C build
  '';
}
# nix-shell nix/shell/meson.nix