regex-is-hard/shell.nix

16 lines
227 B
Nix
Raw Permalink Normal View History

2024-08-29 17:36:29 +00:00
let
defaultNix = import ./.;
inherit (defaultNix) pkgs;
in
pkgs.mkShell {
strictDeps = true;
inputsFrom = [ defaultNix.default ];
nativeBuildInputs = with pkgs; [
clang-tools
nil
nixfmt-rfc-style
];
}