build and run in nix-shell (#2000)

This commit is contained in:
bvcxza 2025-10-29 11:06:16 -03:00 committed by GitHub
parent fd985b0c9a
commit 044ea7593a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
wget
git
javaPackages.openjfx21
(pkgs.jdk21.override {enableJavaFX = true;})
];
}