Skip to content

Commit

Permalink
add small Nix shell for development
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Jun 25, 2024
1 parent f3a82b0 commit 9759ad1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
pkgs ? import (builtins.fetchGit {
url = "https://github.com/NixOS/nixpkgs/";
ref = "refs/tags/24.05";
}) {},
javaSpec ? "jdk21",
}:
pkgs.mkShell {
name = "fs2-data-env";
buildInputs = [ pkgs.${javaSpec} pkgs.ammonite pkgs.coursier pkgs.sbt ];
}

0 comments on commit 9759ad1

Please sign in to comment.