diff options
| author | Sam Estep <sam@samestep.com> | 2025-07-14 06:16:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-14 10:16:37 +0000 |
| commit | db06fbb163877b8823507b162ee7f2dfca8520f0 (patch) | |
| tree | 1cf768196bcafe359d8eefd7aef9e906341298ba /flake.nix | |
| parent | d39590228241cb42d72f493f6f484c5ea93df934 (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.nix | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -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 + ]; + }; } ); } |
