1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

kotlin: 1.0.0-beta-4583 -> 1.0.0-beta-4584

This commit is contained in:
Tim Steinbach 2015-12-24 13:24:57 -05:00
parent 6e27454728
commit 84accab674

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip, which }:
stdenv.mkDerivation rec {
version = "1.0.0-beta-4583";
version = "1.0.0-beta-4584";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip";
sha256 = "4db71d3c1f150618568ebd1f8c17567ff15afe022c2f0121368c17afad9e8188";
sha256 = "191698784f4a1f769df14757bad40243293aa6bc3d8e906bfa0c80c3db0a1d2c";
};
propagatedBuildInputs = [ jre which ] ;