mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
bloop: 2.0.2 -> 2.0.3 (#347473)
This commit is contained in:
commit
cbadcc438d
@ -668,6 +668,12 @@
|
|||||||
githubId = 19290901;
|
githubId = 19290901;
|
||||||
name = "Andrew Brooks";
|
name = "Andrew Brooks";
|
||||||
};
|
};
|
||||||
|
agilesteel = {
|
||||||
|
email = "agilesteel@gmail.com";
|
||||||
|
github = "agilesteel";
|
||||||
|
githubId = 1141462;
|
||||||
|
name = "Vladyslav Pekker";
|
||||||
|
};
|
||||||
aherrmann = {
|
aherrmann = {
|
||||||
email = "andreash87@gmx.ch";
|
email = "andreash87@gmx.ch";
|
||||||
github = "aherrmann";
|
github = "aherrmann";
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bloop";
|
pname = "bloop";
|
||||||
version = "2.0.2";
|
version = "2.0.3";
|
||||||
|
|
||||||
platform =
|
platform =
|
||||||
if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then "x86_64-pc-linux"
|
if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then "x86_64-pc-linux"
|
||||||
@ -36,9 +36,9 @@ stdenv.mkDerivation rec {
|
|||||||
bloop-binary = fetchurl rec {
|
bloop-binary = fetchurl 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 "sha256-xYVfgi3ANjBiuf4/5FDgSYDL/fPsvuJn4jFxAEVYct4="
|
if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then "sha256-aEsEXGaKi+wziNAuuX3s/LWB6/fIjon9NF3w9c/lTUE="
|
||||||
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then "sha256-lq0S2AsulcUUYDd3qnWonwd/W0/gb7lJwC+QTYTlTdg="
|
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then "sha256-dEVWDwFVsg1eqrAAfuuR5FUFyAt44ev7UP7zxByzW14="
|
||||||
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then "sha256-e+9Q7xIEsHloaKOj13vZnGs2vulkOJv7tCOuACobHvk="
|
else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then "sha256-0rYdivIas6ECwGPm3bACMzHhS+yxQNLtEPxPQAXkSg0="
|
||||||
else throw "unsupported platform";
|
else throw "unsupported platform";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -70,6 +70,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way";
|
description = "Scala build server and command-line tool to make the compile and test developer workflows fast and productive in a build-tool-agnostic way";
|
||||||
mainProgram = "bloop";
|
mainProgram = "bloop";
|
||||||
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||||
maintainers = with maintainers; [ kubukoz tomahna ];
|
maintainers = with maintainers; [ agilesteel kubukoz tomahna ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user