Skip to content

Commit 101170a

Browse files
committed
feat: Make deps-lock available in devshell
1 parent 680e377 commit 101170a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

flake.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,12 @@
9595

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

100105
shellHook = ''
101106
echo "Setting up minimal dev shell..."

0 commit comments

Comments
 (0)