powersort/shell1.nix
2024-11-23 17:56:52 +01:00

16 lines
297 B
Nix

{ pkgs ? import <nixpkgs> { } }:
let
unstable = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz) { };
jdk = unstable.jdk23;
in
pkgs.mkShell {
buildInputs = with pkgs; [
jdk
(callPackage gradle-packages.gradle_8 {
java = jdk;
})
];
}