dev-templates/kotlin/flake.nix

41 lines
989 B
Nix
Raw Normal View History

2022-07-29 01:21:18 +02:00
{
description = "A Nix-flake-based Kotlin development environment";
inputs = {
2022-07-31 12:57:49 +02:00
dev.url = "github:the-nix-way/dev-templates";
2022-07-29 01:21:18 +02:00
};
2022-07-31 12:57:49 +02:00
outputs = { self, dev }:
let
inherit (dev.lib) flake-utils nixpkgs;
in flake-utils.lib.eachDefaultSystem (system:
2022-07-29 01:21:18 +02:00
let
2022-07-29 01:34:22 +02:00
jdk = "jdk17";
2022-07-29 01:21:18 +02:00
2022-07-29 01:34:22 +02:00
config = {
packageOverrides = p: {
gradle = (p.gradle.override { java = p.${jdk}; });
kotlin = (p.kotlin.override { jre = p.${jdk}; });
};
};
pkgs = import nixpkgs { inherit config system; };
2022-07-29 01:21:18 +02:00
kotlin = pkgs.kotlin;
buildTools = with pkgs; [ gradle ];
2022-07-29 01:34:22 +02:00
otherTools = with pkgs; [ gcc ncurses patchelf zlib ];
2022-07-29 01:21:18 +02:00
inherit (pkgs) mkShell;
in {
devShells = {
default = mkShell {
2022-07-29 01:34:22 +02:00
buildInputs = [ kotlin ] ++ buildTools ++ otherTools;
2022-07-29 01:21:18 +02:00
shellHook = ''
${kotlin}/bin/kotlin -version
'';
};
};
});
}