shell.nix
author Tomas Zeman <tomas@functionals.cz>
Tue, 31 Jan 2023 16:46:11 +0100
changeset 16 e01a46f45b02
permissions -rw-r--r--
direnv / nix environment

{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    openjdk11
  ];
}