2018-03-19 23:27:18 +03:00
|
|
|
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "metabase-${version}";
|
2018-05-21 02:29:58 +03:00
|
|
|
version = "0.29.3";
|
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";
|
2018-05-21 02:29:58 +03:00
|
|
|
sha256 = "18yvjxlgdbg7h7ipj1wlic5m0gv5s2943c72shs44jvic6g42pzv";
|
2018-03-19 23:27:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
unpackPhase = "true";
|
|
|
|
|
|
|
|
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; {
|
|
|
|
description = "The easy, open source way for everyone in your company to ask questions and learn from data.";
|
2018-04-18 03:30:39 +03:00
|
|
|
homepage = https://metabase.com;
|
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ schneefux thoughtpolice ];
|
2018-03-19 23:27:18 +03:00
|
|
|
};
|
|
|
|
}
|