Skip to content

Commit 8beb0b1

Browse files
authored
chore: update flake.nix to handle aarch64 linux (#13930)
1 parent bac9b38 commit 8beb0b1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242

4343
# The minimal set of packages to build Coder.
4444
devShellPackages = with pkgs; [
45-
# google-chrome is not available on OSX
46-
(if pkgs.stdenv.hostPlatform.isDarwin then null else google-chrome)
45+
# google-chrome is not available on OSX and aarch64 linux
46+
(if pkgs.stdenv.hostPlatform.isDarwin || pkgs.stdenv.hostPlatform.isAarch64 then null else google-chrome)
4747
# strace is not available on OSX
4848
(if pkgs.stdenv.hostPlatform.isDarwin then null else strace)
4949
bat

0 commit comments

Comments
 (0)