java: add minimalistic java shell

This commit is contained in:
Christoph Hollizeck 2024-12-30 16:49:29 +01:00
parent 7b605c1fd9
commit 68038b735f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 249300664F2AF2C7

11
shells/java.nix Normal file
View file

@ -0,0 +1,11 @@
{
pkgs,
mkShell,
...
}:
mkShell {
# Create your shell
nativeBuildInputs = with pkgs; [
jdt-language-server
];
}