ki-shell: use finalAttrs

This commit is contained in:
Benedikt Ritter
2026-06-02 15:53:24 +02:00
parent b40357a913
commit b7199482bc

View File

@@ -6,14 +6,14 @@
jre,
}:
maven.buildMavenPackage rec {
maven.buildMavenPackage (finalAttrs: {
pname = "kotlin-interactive-shell";
version = "0.5.2";
src = fetchFromGitHub {
owner = "Kotlin";
repo = "kotlin-interactive-shell";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-3DTyo7rPswpEVzFkcprT6FD+ITGJ+qCXFKXEGoCK+oE=";
};
@@ -50,4 +50,4 @@ maven.buildMavenPackage rec {
platforms = jre.meta.platforms;
mainProgram = "ki";
};
}
})