mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
487e8dab8f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/metabase/versions
28 lines
771 B
Nix
28 lines
771 B
Nix
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "metabase-${version}";
|
|
version = "0.30.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.metabase.com/v${version}/metabase.jar";
|
|
sha256 = "0mvyl5v798qwdydqsjjq94ihfwi62kq4gprxjg3rcckmjdyx2ycs";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
unpackPhase = "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 ];
|
|
};
|
|
}
|