shell.nix
author Tomas Zeman <tomas@functionals.cz>
Thu, 13 May 2021 14:33:04 +0200
changeset 48 ac85af5eb629
parent 39 d671d57178fc
permissions -rw-r--r--
Added tag fatags-0.7 for changeset d7b69a5dcd37

{ pkgs ? import <nixpkgs> {} }:

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