28 lines
767 B
Nix
28 lines
767 B
Nix
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "metabase";
|
|
version = "0.32.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.metabase.com/v${version}/metabase.jar";
|
|
sha256 = "0dzwwwvsi9pr40xbqws02yzjgx89ygjiybjd0n73hj69v6j9f2rn";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $src"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
|
|
};
|
|
}
|