nixpkgs/pkgs/servers/metabase/default.nix

28 lines
769 B
Nix
Raw Normal View History

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