Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

bloop: 1.5.8 -> 1.5.11

+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.8"; 13 + version = "1.5.11"; 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-KqfXNk89VHhRbTK0kBiO02q/sfp3bs674lU3gUpwAi0=" 39 - else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-1MmX7icqUJgU5y9vYSE4nMzJfLH1SJvYJ24kw697HuY=" 38 + if stdenv.isLinux && stdenv.isx86_64 then "sha256-T07t0CTSkCPQfjhg/L0NhyZgMobXL7DCKZZefPxdBJk=" 39 + else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-3GiMFRikru+8J+eDkba9bNNrpmtuAdH9qEjnH55beiQ=" 40 40 else throw "unsupported platform"; 41 41 }; 42 42