shell.nix
author Tomas Zeman <tomas@functionals.cz>
Tue, 11 May 2021 14:28:55 +0200
changeset 44 ad85035e4d90
parent 39 d671d57178fc
permissions -rw-r--r--
build: code cleanup

{ pkgs ? import <nixpkgs> {} }:

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