Skip to content

Commit

Permalink
fix: add gcc to flake.nix
Browse files Browse the repository at this point in the history
Closes #581
  • Loading branch information
Saghen committed Dec 17, 2024
1 parent 49bff2b commit 380bccf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
program = let
buildScript = pkgs.writeShellApplication {
name = "build-plugin";
runtimeInputs = with pkgs; [ fenix.minimal.toolchain ];
runtimeInputs = with pkgs; [ fenix.minimal.toolchain gcc ];
text = ''
cargo build --release
'';
Expand All @@ -88,6 +88,7 @@
devShells.default = pkgs.mkShell {
name = "blink";
packages = with pkgs; [
gcc
fenix.complete.toolchain
rust-analyzer-nightly
nix-update
Expand Down

0 comments on commit 380bccf

Please sign in to comment.