Skip to content

Commit

Permalink
build(nix): shell dont need CC
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Feb 4, 2024
1 parent 87aa3b6 commit 4d82016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Expand Up @@ -20,7 +20,7 @@
vendorHash = "sha256-wY3kIhNIqTaK9MT1VeePERNhqvbtf6bsyRTjG8nrqxU=";
};

devShells.default = pkgs.mkShell {
devShells.default = pkgs.mkShellNoCC {
packages = with pkgs; [
go
go-task
Expand All @@ -33,7 +33,7 @@
shellHook = "go mod tidy";
};

devShells.docs = pkgs.mkShell {
devShells.docs = pkgs.mkShellNoCC {
packages = with pkgs; with staging-pkgs.python311Packages; [
go-task
htmltest
Expand Down

0 comments on commit 4d82016

Please sign in to comment.