1 { pkgs ? import <nixpkgs> {} }:
2
3 pkgs.mkShell {
4 buildInputs = with pkgs; [
5 openjdk11
6 ];
7 }