nixpkgs/pkgs/servers/metabase/default.nix
2021-02-05 04:23:50 +00:00

28 lines
768 B
Nix

{ lib, stdenv, fetchurl, makeWrapper, jdk11 }:
stdenv.mkDerivation rec {
pname = "metabase";
version = "0.37.8";
src = fetchurl {
url = "https://downloads.metabase.com/v${version}/metabase.jar";
sha256 = "sha256-T3isJcnDUvN4TCd9tZA1p46pamhdPSwIKKAOr6+1F30=";
};
nativeBuildInputs = [ makeWrapper ];
dontUnpack = true;
installPhase = ''
makeWrapper ${jdk11}/bin/java $out/bin/metabase --add-flags "-jar $src"
'';
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";
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
};
}