summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorSam Estep <sam@samestep.com>2025-07-14 06:16:37 -0400
committerGitHub <noreply@github.com>2025-07-14 10:16:37 +0000
commitdb06fbb163877b8823507b162ee7f2dfca8520f0 (patch)
tree1cf768196bcafe359d8eefd7aef9e906341298ba /flake.nix
parentd39590228241cb42d72f493f6f484c5ea93df934 (diff)
Let `flake.nix` users run `extras/formatting.sh` (#7682)
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix26
1 files changed, 14 insertions, 12 deletions
diff --git a/flake.nix b/flake.nix
index 211e5f107..a6ad8f9f5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -16,18 +16,20 @@
pkgs = import nixpkgs { inherit system; };
in
{
- devShell =
- with pkgs;
- mkShell {
- buildInputs = [
- cmake
- llvm
- ninja
- nixfmt-rfc-style
- python3
- xorg.libX11
- ];
- };
+ devShell = pkgs.mkShell {
+ buildInputs = [
+ pkgs.cmake
+ pkgs.gersemi
+ pkgs.llvm
+ pkgs.llvmPackages_17.clang-tools
+ pkgs.ninja
+ pkgs.nixfmt-rfc-style
+ pkgs.prettier
+ pkgs.python3
+ pkgs.shfmt
+ pkgs.xorg.libX11
+ ];
+ };
}
);
}