Files
riverguile/shell.nix
bluepython508 a5e4b682fe Nix support
src/call-idle-handler.c change due to build failures because of -wall -werror
2025-03-18 10:03:47 +00:00

5 lines
129 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
inputsFrom = [(import ./. {inherit pkgs;})];
packages = [pkgs.clang-tools];
}