lol

Merge pull request #185806 from Prillan/update-sbt

sbt: 1.6.2 -> 1.7.1

authored by

Sebastián Mancilla and committed by
GitHub
689d3842 e76a3f80

+6 -3
+6 -3
pkgs/development/tools/build-managers/sbt/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "sbt"; 11 - version = "1.6.2"; 11 + version = "1.7.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"; 15 - sha256 = "sha256-Y3Y3tsTm+gSrYs02QGHjKxJICwkAHNIzA99is2+t1EA="; 15 + sha256 = "sha256-ihg6/bNRkpDd4vjIHJsrrRnd14c17zEftfub3PaNP+Q="; 16 16 }; 17 17 18 18 postPatch = '' ··· 21 21 22 22 nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ]; 23 23 24 - buildInputs = lib.optionals stdenv.isLinux [ zlib ]; 24 + buildInputs = lib.optionals stdenv.isLinux [ 25 + stdenv.cc.cc # libstdc++.so.6 26 + zlib 27 + ]; 25 28 26 29 installPhase = '' 27 30 runHook preInstall