shell.nix
author Tomas Zeman <tomas@functionals.cz>
Tue, 11 May 2021 14:10:07 +0200
changeset 43 1152fc8faf63
parent 39 d671d57178fc
permissions -rw-r--r--
Avoid compiler/optimizer crash (StackOverflowError). Code cleanup.

{ pkgs ? import <nixpkgs> {} }:

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