nixpkgs/pkgs/servers/metabase/default.nix

28 lines
771 B
Nix
Raw Normal View History

2018-03-19 20:27:18 +00:00
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
name = "metabase-${version}";
version = "0.28.6";
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";
sha256 = "1dzs57yyx6k93gvyva9y38xdb4pbvdliad3zzgk3vs74fp1zh2vq";
2018-03-19 20:27:18 +00:00
};
nativeBuildInputs = [ makeWrapper ];
unpackPhase = "true";
installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $src"
2018-03-19 20:27:18 +00:00
'';
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 ];
2018-03-19 20:27:18 +00:00
};
}