JavaFX nix shell

This commit is contained in:
Charlotte Van Petegem 2020-02-21 15:06:14 +01:00
parent ec5adf3828
commit 13a2ee9736

View file

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
jdk11
openjfx11
];
}