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