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