metabase 0.48.4 -> 0.48.8 https://repology.org/project/metabase/versions attrpath: metabase Checking auto update branch... No auto update branch exists Old version 0.48.4" not present in master derivation file with contents: { lib, stdenv, fetchurl, makeWrapper, jdk11, nixosTests }: stdenv.mkDerivation rec { pname = "metabase"; version = "0.48.7"; src = fetchurl { url = "https://downloads.metabase.com/v${version}/metabase.jar"; hash = "sha256-W0FP9c6vMLCfK93eaXPeF1mkBAI2KMjQ9EpGx7hbRg8="; }; nativeBuildInputs = [ makeWrapper ]; dontUnpack = true; installPhase = '' runHook preInstall makeWrapper ${jdk11}/bin/java $out/bin/metabase --add-flags "-jar $src" runHook postInstall ''; meta = with lib; { description = "The easy, open source way for everyone in your company to ask questions and learn from data"; homepage = "https://metabase.com"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.agpl3Only; platforms = platforms.all; maintainers = with maintainers; [ schneefux thoughtpolice mmahut ]; mainProgram = "metabase"; }; passthru.tests = { inherit (nixosTests) metabase; }; }