summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-05-07 17:56:54 +0200
committerGitHub <noreply@github.com>2021-05-07 17:56:54 +0200
commitd9f8fa15602f9cfb31e0d69dff7d0101c0112d10 (patch)
tree0a4bd84aff7d8ac94e8fed351530536193fe6690
parentd2e027aa445bc132c64c39354f5d6567f9520e2c (diff)
parent6bffd187eb0bc6942c051309d9e7e4c493eafc21 (diff)
Merge pull request #119410 from 239/submit/update-kotlin
kotlin: 1.4.21 -> 1.4.32
-rw-r--r--pkgs/development/compilers/kotlin/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 9154b7d76a64..8a34c6166fa8 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,14 +1,12 @@
{ lib, stdenv, fetchurl, makeWrapper, jre, unzip }:
-let
- version = "1.4.21";
-in stdenv.mkDerivation {
- inherit version;
+stdenv.mkDerivation rec {
pname = "kotlin";
+ version = "1.4.32";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
- sha256 = "1ixnwrvgs14f9160d9d69r7w2dfp5cdwiwpk1ky0ps8nly8hjwj6";
+ hash = "sha256-3+8ju4a9XzYWbU7BJnyN5Ts4J8RG1U6CMixrbarTWUw=";
};
propagatedBuildInputs = [ jre ] ;