Skip to content

Commit

Permalink
feat: make deps-lock available in devshell
Browse files Browse the repository at this point in the history
  • Loading branch information
srounce committed Apr 29, 2024
1 parent 680e377 commit 57c0916
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,12 @@

# a minimal shell for doing a depsLock, that doesn't require an existing deps cache
devShells.depsLock = pkgs.mkShell {
buildInputs = [ pkgs.openjdk21 pkgs.clojure pkgs.babashka ] ++ (basicToolsFn pkgs);
buildInputs = [
pkgs.openjdk21
pkgs.clojure
pkgs.babashka
pkgsWithCljNixOverlay.deps-lock
] ++ (basicToolsFn pkgs);

shellHook = ''
echo "Setting up minimal dev shell..."
Expand Down

0 comments on commit 57c0916

Please sign in to comment.