nixos-config/shells/javafx.nix
2020-02-22 16:14:31 +01:00

9 lines
124 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
jdk11
openjfx11
];
}