tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bloop: 1.5.15 -> 1.5.17
Vladyslav Pekker
2 years ago
481a9dc0
0dbc589c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
bloop
default.nix
+3
-3
pkgs/development/tools/build-managers/bloop/default.nix
···
10
10
11
11
stdenv.mkDerivation rec {
12
12
pname = "bloop";
13
13
-
version = "1.5.15";
13
13
+
version = "1.5.17";
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
38
-
if stdenv.isLinux && stdenv.isx86_64 then "sha256-bC43GBIGxelSx++I1ElPd8twrr5nDaZHC2G0OCsx5xQ="
39
39
-
else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-lgWXdhDjE8lIzbUkWFJV3k+muUZaSpsc9n6PuuXv1hc="
38
38
+
if stdenv.isLinux && stdenv.isx86_64 then "sha256-lP7j7pPG7wC36sG+d80F2E6ZHPZcOZN/M/j6CniaNGY="
39
39
+
else if stdenv.isDarwin && stdenv.isx86_64 then "sha256-awSBYSN4do4w9dAx6JwoexiptfC01vW1/o53Tp13xj0="
40
40
else throw "unsupported platform";
41
41
};
42
42