about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-18 06:01:21 +0000
committerGitHub <noreply@github.com>2024-03-18 06:01:21 +0000
commit819a14ad058cd71505adf631cc3038dd1a664289 (patch)
tree4e2a1fa163f96e2ffdd64fe7eb279e83810fd895 /pkgs/development/compilers
parent2a9126e5d4b6639ad15aea0307e09f3509a0e1b6 (diff)
parent587588276ef738e19319187fa7a32f46dd513cea (diff)
downloadnixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar.gz
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar.bz2
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar.lz
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar.xz
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.tar.zst
nixlib-819a14ad058cd71505adf631cc3038dd1a664289.zip
Merge master into staging-next
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 5f2e4d88b0ce..4dacd028311e 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.5";
+  version = "2201.8.6";
   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-xqgLEMlc8s7qsrjz9kDBvwmfS0ytTqP4yOaet6xog8A=";
+    hash = "sha256-/oYyYziUTt4OqQfYJdDuRVy9xmMDfhpj24lbisQFfAU=";
   };
 
   nativeBuildInputs = [ makeWrapper ];