System/applications/devel-kotlin.nix

13 lines
222 B
Nix
Raw Normal View History

2022-06-14 01:00:09 -04:00
{ config, lib, pkgs, java, unstable, ... }:
2022-05-15 21:52:46 -04:00
{
environment.systemPackages = with unstable; [
2022-06-14 01:00:09 -04:00
java.packages.${system}.semeru-stable
2022-06-14 13:42:32 -04:00
gradle
2022-05-15 21:52:46 -04:00
kotlin
kotlin-native
kotlin-language-server
ktlint
];
}