Skip to content

Commit

Permalink
pkgs/crossover: make optional for other systems
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodachi94 committed Jun 23, 2024
1 parent 52021c8 commit b5314c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ let
in
{
awesome-lint = cp ./all/awesome-lint { };
crossover = cp ./all/crossover.nix { };
doctoc = cp ./all/doctoc.nix { };
ultisnips-vscode = cp ./all/ultisnips-vscode.nix { };
} // pkgs.lib.optionalAttrs pkgs.stdenv.isLinux { } // pkgs.lib.optionalAttrs pkgs.stdenv.isDarwin {
} // pkgs.lib.optionalAttrs pkgs.stdenv.isLinux {
crossover = cp ./linux/crossover.nix { };
} // pkgs.lib.optionalAttrs pkgs.stdenv.isDarwin {
developercolorpicker = cp ./darwin/developercolorpicker.nix { };
}
File renamed without changes.

0 comments on commit b5314c0

Please sign in to comment.