mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
31 lines
842 B
Nix
31 lines
842 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jdk11, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "metabase";
|
|
version = "0.41.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.metabase.com/v${version}/metabase.jar";
|
|
sha256 = "1xql4d7kipyxsibzyg0c4lgkms12g1cxxnf0zkc6cbwz2vdva54a";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
makeWrapper ${jdk11}/bin/java $out/bin/metabase --add-flags "-jar $src"
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
passthru.tests = {
|
|
inherit (nixosTests) metabase;
|
|
};
|
|
}
|