bloop: 1.5.3 -> 1.5.4 (#195349)

authored by

Kévin Rauscher and committed by
GitHub
cd6bdcb4 83a4b986

+3 -3
+3 -3
pkgs/development/tools/build-managers/bloop/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "bloop"; 13 - version = "1.5.3"; 13 + version = "1.5.4"; 14 14 15 15 platform = 16 16 if stdenv.isLinux && stdenv.isx86_64 then "x86_64-pc-linux" ··· 35 35 bloop-binary = fetchurl rec { 36 36 url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; 37 37 sha256 = 38 - if stdenv.isLinux && stdenv.isx86_64 then "sha256-Ub9o5XbMRTB1QET0LP3XAgUBcO7q7XfB8bI9bu/lQGw=" 39 - else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-Z4XkbPb2xXbYweRx7NY76a9twjP6aRWz1VoqXZFe9wo=" 38 + if stdenv.isLinux && stdenv.isx86_64 then "sha256-q8K5dzzLhQ8T6VzhoJ5iGk0yz9pOPrP/V4eiTwyzlgo=" 39 + else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-7zTKOAnlQWk9BbdBZLBfSLyBhFqhkscbcHN1zVTjDjQ=" 40 40 else throw "unsupported platform"; 41 41 }; 42 42