shell.nix
author Tomas Zeman <tomas@functionals.cz>
Thu, 29 Apr 2021 09:50:58 +0200
changeset 39 d671d57178fc
permissions -rw-r--r--
direnv(1)/nix setup

{ pkgs ? import <nixpkgs> {} }:

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