From 40ef9ff779a08a173132bb16dda05c0341769564 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 18 Aug 2023 16:41:03 -0500 Subject: [PATCH] fix: add sapling to the nix flake (#9202) --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3a027ea605..7194d808b2 100644 --- a/flake.nix +++ b/flake.nix @@ -53,6 +53,7 @@ protobuf protoc-gen-go ripgrep + sapling shellcheck shfmt sqlc @@ -109,10 +110,11 @@ mkdir -p /etc/init.d ''; }; + allPackages = devShellPackages ++ devImagePackages; # Environment variables that live in `/etc/environment` in the container. # These will also be applied to the container config. devEnvVars = [ - "PATH=${pkgs.lib.makeBinPath (devShellPackages ++ devImagePackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" + "PATH=${pkgs.lib.makeBinPath (allPackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" # This setting prevents Go from using the public checksum database for # our module path prefixes. It is required because these are in private # repositories that require authentication.