Skip to content

Commit 754d1df

Browse files
committed
fix: add sapling to the nix flake
1 parent 22e781e commit 754d1df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flake.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
protobuf
5454
protoc-gen-go
5555
ripgrep
56+
sapling
5657
shellcheck
5758
shfmt
5859
sqlc
@@ -109,10 +110,11 @@
109110
mkdir -p /etc/init.d
110111
'';
111112
};
113+
allPackages = devShellPackages ++ devImagePackages;
112114
# Environment variables that live in `/etc/environment` in the container.
113115
# These will also be applied to the container config.
114116
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"
116118
# This setting prevents Go from using the public checksum database for
117119
# our module path prefixes. It is required because these are in private
118120
# repositories that require authentication.

0 commit comments

Comments
 (0)