2018-03-19 23:27:18 +03:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-01 20:01:13 +03:00
|
|
|
pname = "metabase";
|
2020-11-19 06:03:59 +03:00
|
|
|
version = "0.37.1";
|
2018-03-19 23:27:18 +03:00
|
|
|
|
2018-04-18 03:30:39 +03:00
|
|
|
src = fetchurl {
|
2018-03-19 23:27:18 +03:00
|
|
|
url = "http://downloads.metabase.com/v${version}/metabase.jar";
|
2020-11-19 06:03:59 +03:00
|
|
|
sha256 = "1mqkaagd452kygch47jsqzcjcsian4pp5xcvr3nnm3p3mah79wyi";
|
2018-03-19 23:27:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2019-06-19 18:45:34 +03:00
|
|
|
dontUnpack = true;
|
2018-03-19 23:27:18 +03:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-04-18 03:30:39 +03:00
|
|
|
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $src"
|
2018-03-19 23:27:18 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-08-01 20:01:13 +03:00
|
|
|
description = "The easy, open source way for everyone in your company to ask questions and learn from data";
|
|
|
|
homepage = "https://metabase.com";
|
2018-04-18 03:30:39 +03:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.all;
|
2019-08-12 14:14:36 +03:00
|
|
|
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
|
2018-03-19 23:27:18 +03:00
|
|
|
};
|
|
|
|
}
|