bloop: 2.0.9 -> 2.0.10

This commit is contained in:
Vladyslav Pekker 2025-05-07 14:35:33 -03:00
parent 6ea347c26a
commit 8df7737bbf
No known key found for this signature in database

View file

@ -11,7 +11,7 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "bloop"; pname = "bloop";
version = "2.0.9"; version = "2.0.10";
platform = platform =
if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then
@ -42,11 +42,11 @@ stdenv.mkDerivation rec {
url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}";
sha256 = sha256 =
if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then
"sha256-mslCzvJ+z5VNQkVa9HXjw2bUBprMgs3bAy3RmEt8OlI=" "sha256-GoWHVYIA98YMMmhYj1bBysABBq2UxEcELXqDi+XRnQ4="
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then
"sha256-XdMPo9O7ADhInmGFIOHihl1z4yPKAyDjCH7m3tCtKNo=" "sha256-hE54Z2QLlAt4S+LQOAD0jLf1y2/PkKO9JAT2L6M8lWA="
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then
"sha256-sJM00f2KBI6fnVj3U/h/pYAFT7QjZkfJ7ubDfFlRJ0Q=" "sha256-8gtaiSilf1yL50QSsy4K686R1J9W5NL1JyB7onMSTOw="
else else
throw "unsupported platform"; throw "unsupported platform";
}; };