about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-02-23 15:57:16 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-02-23 15:57:16 +0000
commitcb3d40911de27e954d6c56eaf32bce35164e5509 (patch)
treeb1b0464afcc802199b8010f96d5a8a10b8f00a76 /pkgs/development/compilers
parentb13bb492c717df11eaf63ad4af9a6d143b2fb8fa (diff)
downloadnixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar.gz
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar.bz2
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar.lz
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar.xz
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.tar.zst
nixlib-cb3d40911de27e954d6c56eaf32bce35164e5509.zip
ballerina: 2201.8.4 -> 2201.8.5
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ballerina/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ballerina/default.nix b/pkgs/development/compilers/ballerina/default.nix
index c979b0225298..5f2e4d88b0ce 100644
--- a/pkgs/development/compilers/ballerina/default.nix
+++ b/pkgs/development/compilers/ballerina/default.nix
@@ -1,6 +1,6 @@
 { ballerina, lib, writeText, runCommand, makeWrapper, fetchzip, stdenv, openjdk }:
 let
-  version = "2201.8.4";
+  version = "2201.8.5";
   codeName = "swan-lake";
 in stdenv.mkDerivation {
   pname = "ballerina";
@@ -8,7 +8,7 @@ in stdenv.mkDerivation {
 
   src = fetchzip {
     url = "https://dist.ballerina.io/downloads/${version}/ballerina-${version}-${codeName}.zip";
-    hash = "sha256-9+h5tK77ebbob1fOIB98mi9t6QJFB230yJMba6o+yEI=";
+    hash = "sha256-xqgLEMlc8s7qsrjz9kDBvwmfS0ytTqP4yOaet6xog8A=";
   };
 
   nativeBuildInputs = [ makeWrapper ];