powersort/shell1.nix

16 lines
297 B
Nix
Raw Normal View History

2024-11-19 19:17:15 +01:00
{ 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;
})
];
}