Skip to content

Instantly share code, notes, and snippets.

@trev-dev
Created March 3, 2023 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trev-dev/37ce7e14edaf63fd037824e0c3cb2d84 to your computer and use it in GitHub Desktop.
Save trev-dev/37ce7e14edaf63fd037824e0c3cb2d84 to your computer and use it in GitHub Desktop.
Java 18 with Lombok nix shell
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
jdk18
maven
lombok
];
JAVA_HOME="${pkgs.jdk18}";
LOMBOK_JAR="${pkgs.lombok}/share/java/lombok.jar";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment