|
53 | 53 | protobuf
|
54 | 54 | protoc-gen-go
|
55 | 55 | ripgrep
|
| 56 | +sapling |
56 | 57 | shellcheck
|
57 | 58 | shfmt
|
58 | 59 | sqlc
|
|
109 | 110 | mkdir -p /etc/init.d
|
110 | 111 | '';
|
111 | 112 | };
|
| 113 | +allPackages=devShellPackages++devImagePackages; |
112 | 114 | # Environment variables that live in `/etc/environment` in the container.
|
113 | 115 | # These will also be applied to the container config.
|
114 | 116 | devEnvVars=[
|
115 |
| -"PATH=${pkgs.lib.makeBinPath(devShellPackages++devImagePackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" |
| 117 | +"PATH=${pkgs.lib.makeBinPath(allPackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" |
116 | 118 | # This setting prevents Go from using the public checksum database for
|
117 | 119 | # our module path prefixes. It is required because these are in private
|
118 | 120 | # repositories that require authentication.
|
|