nixpkgs/pkgs/servers/metabase/default.nix

28 lines
766 B
Nix
Raw Normal View History

2018-03-19 20:27:18 +00:00
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
2019-08-01 18:01:13 +01:00
pname = "metabase";
2020-03-02 14:58:53 +00:00
version = "0.34.3";
2018-03-19 20:27:18 +00:00
src = fetchurl {
2018-03-19 20:27:18 +00:00
url = "http://downloads.metabase.com/v${version}/metabase.jar";
2020-03-02 14:58:53 +00:00
sha256 = "0kvjqdzr9zb65c2kaqb39x8s71ynpp56aax2h1x37rds4zxdg2yg";
2018-03-19 20:27:18 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2019-06-19 16:45:34 +01:00
dontUnpack = true;
2018-03-19 20:27:18 +00:00
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $src"
2018-03-19 20:27:18 +00:00
'';
meta = with stdenv.lib; {
2019-08-01 18:01:13 +01:00
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;
2019-08-12 12:14:36 +01:00
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
2018-03-19 20:27:18 +00:00
};
}