nixpkgs-suyu/pkgs/servers/metabase/default.nix

28 lines
765 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre }:
2018-03-19 21:27:18 +01:00
stdenv.mkDerivation rec {
2019-08-01 19:01:13 +02:00
pname = "metabase";
2021-01-08 19:59:09 +01:00
version = "0.37.5";
2018-03-19 21:27:18 +01:00
src = fetchurl {
2021-01-04 15:17:32 +01:00
url = "https://downloads.metabase.com/v${version}/metabase.jar";
2021-01-08 19:59:09 +01:00
sha256 = "1wvq5nx3y28w8wn6wyy650gc32hgkx7inbcylrdirhagzqhcm8z6";
2018-03-19 21:27:18 +01:00
};
nativeBuildInputs = [ makeWrapper ];
2019-06-19 17:45:34 +02:00
dontUnpack = true;
2018-03-19 21:27:18 +01:00
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $src"
2018-03-19 21:27:18 +01:00
'';
meta = with lib; {
2019-08-01 19:01:13 +02: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 13:14:36 +02:00
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
2018-03-19 21:27:18 +01:00
};
}