File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 23
23
gdk = pkgs . google-cloud-sdk . withExtraComponents ( [ pkgs . google-cloud-sdk . components . gke-gcloud-auth-plugin ] ) ;
24
24
25
25
# The minimal set of packages to build Coder.
26
- devShellPackages = with pkgs ; buildPackages ++ [
26
+ devShellPackages = with pkgs ; [
27
27
# google-chrome is not available on OSX
28
28
( if pkgs . stdenv . hostPlatform . isDarwin then null else google-chrome )
29
29
# strace is not available on OSX
124
124
} ;
125
125
in
126
126
{
127
- defaultPackage = formatter ; # or replace it with your desired default package.
128
127
devShell = pkgs . mkShell {
129
128
shellHook = ''
130
129
export PLAYWRIGHT_BROWSERS_PATH=${ pkgs . playwright-driver . browsers }
131
130
export PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS=true
132
131
'' ;
133
132
} ;
134
133
packages = {
134
+ all = pkgs . buildEnv {
135
+ name = "all-packages" ;
136
+ paths = devShellPackages ;
137
+ } ;
135
138
site = buildSite ;
136
139
137
140
# Copying `OS_ARCHES` from the Makefile.
You can’t perform that action at this time.
0 commit comments