metabase: init at 0.28.1 (#33460)

This commit is contained in:
schneefux 2018-03-19 21:27:18 +01:00 committed by Matthew Justin Bauer
parent 7382ae8acf
commit e2b8dfa867
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
name = "metabase-${version}";
version = "0.28.1";
jar = fetchurl {
url = "http://downloads.metabase.com/v${version}/metabase.jar";
sha256 = "1nv3y4pnvzd7lwyj14nmhr3k52qd8hilcjxvd7qr3hb7kzmjvbzk";
};
nativeBuildInputs = [ makeWrapper ];
unpackPhase = "true";
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $jar"
'';
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;
maintainers = with maintainers; [ schneefux ];
};
}

View file

@ -1306,6 +1306,8 @@ with pkgs;
meson = callPackage ../development/tools/build-managers/meson { };
metabase = callPackage ../servers/metabase { };
mp3blaster = callPackage ../applications/audio/mp3blaster { };
mp3fs = callPackage ../tools/filesystems/mp3fs { };