metabase: 0.41.5 -> 0.42.1

* metabase: 0.41.5 -> 0.42.0 (#159518)

* metabase: 0.42.0 -> 0.42.1
and use SPDX3 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>

authored by R. RyanTM Renaud and committed by GitHub 9679d273 02c13610

+5 -3
+5 -3
pkgs/servers/metabase/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "metabase"; 5 - version = "0.41.5"; 5 + version = "0.42.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 - sha256 = "sha256-DH1xy1cTVDNNXyOIaayGHzOi4g0ZukNFFbZjufY+XLk="; 9 + hash = "sha256-PmcVVAS/5mDhmOSoFvkZeYkbvFD/KOcgVYuScwD4Olg="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; ··· 14 14 dontUnpack = true; 15 15 16 16 installPhase = '' 17 + runHook preInstall 17 18 makeWrapper ${jdk11}/bin/java $out/bin/metabase --add-flags "-jar $src" 19 + runHook postInstall 18 20 ''; 19 21 20 22 meta = with lib; { 21 23 description = "The easy, open source way for everyone in your company to ask questions and learn from data"; 22 24 homepage = "https://metabase.com"; 23 - license = licenses.agpl3; 25 + license = licenses.agpl3Only; 24 26 platforms = platforms.all; 25 27 maintainers = with maintainers; [ schneefux thoughtpolice mmahut ]; 26 28 };