Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1c43b33a1624
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6452f3888266
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 30, 2020

  1. kotlin: 1.3.70 -> 1.3.71

    r-ryantm committed Mar 30, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    2cede30 View commit details
  2. Merge pull request #83730 from r-ryantm/auto-update/kotlin

    kotlin: 1.3.70 -> 1.3.71
    NeQuissimus authored Mar 30, 2020
    Copy the full SHA
    6452f38 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/kotlin/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/kotlin/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:

let
version = "1.3.70";
version = "1.3.71";
in stdenv.mkDerivation {
inherit version;
pname = "kotlin";

src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
sha256 = "1iw9pjacjdhhvriaz2kzf677csq2nfx66k5cickk79h7ywppi7bh";
sha256 = "0jp7z2lys02d0wmycdlfg9c08ji4qvjaz2wzvrxjyvcwv7d7gnvs";
};

propagatedBuildInputs = [ jre ] ;