shell.nix
author Tomas Zeman <tomas@functionals.cz>
Tue, 11 May 2021 14:29:28 +0200
changeset 45 243e20b0390c
parent 39 d671d57178fc
permissions -rw-r--r--
Added FA.render() method.

{ pkgs ? import <nixpkgs> {} }:

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