Merge pull request 'nix: add clang to flake.nix and shell.nix' (#664) from add-clang into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #664
This commit is contained in:
Alex 2023-10-26 09:25:53 +00:00
commit f4d3905d15
2 changed files with 2 additions and 0 deletions

View file

@ -50,6 +50,7 @@
release = false; release = false;
}).workspaceShell { packages = with pkgs; [ }).workspaceShell { packages = with pkgs; [
rustfmt rustfmt
clang
mold mold
]; }; ]; };
}); });

View file

@ -18,6 +18,7 @@ in {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
#rustPlatform.rust.rustc #rustPlatform.rust.rustc
rustPlatform.rust.cargo rustPlatform.rust.cargo
clang
mold mold
#clippy #clippy
rustfmt rustfmt