Skip to content

Commit

Permalink
chore(devenv): do not install cypress on darwin
Browse files Browse the repository at this point in the history
(cherry picked from commit 1d352fc)
  • Loading branch information
kolaente committed Sep 20, 2024
1 parent 1e7d9c9 commit 2b0fbe2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ vendor/
os-packages/
mage_output_file.go
mage-static
.DS_Store

# Devenv
.devenv*
Expand Down
7 changes: 4 additions & 3 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ let
in {
packages = with pkgs-unstable; [
# General tools
git-cliff
# Frontend tools
cypress
git-cliff
# API tools
golangci-lint mage
# Desktop
electron
] ++ lib.optionals (!pkgs.stdenv.isDarwin) [
# Frontend tools (exclude on Darwin)
cypress
];

languages = {
Expand Down

0 comments on commit 2b0fbe2

Please sign in to comment.