nixpkgs/pkgs/servers/metabase/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
951 B
Nix
Raw Normal View History

2021-12-11 00:11:52 +01:00
{ lib, stdenv, fetchurl, makeWrapper, jdk11, nixosTests }:
2018-03-19 21:27:18 +01:00
stdenv.mkDerivation rec {
2019-08-01 19:01:13 +02:00
pname = "metabase";
2022-07-09 15:35:36 +02:00
version = "0.43.3";
2018-03-19 21:27:18 +01:00
src = fetchurl {
2021-01-04 15:17:32 +01:00
url = "https://downloads.metabase.com/v${version}/metabase.jar";
2022-07-09 15:35:36 +02:00
hash = "sha256-XUJNnyzBGYC3jMi1pVvdMNRo8zxkFcxzdHjytmCAVqM=";
2018-03-19 21:27:18 +01:00
};
nativeBuildInputs = [ makeWrapper ];
2019-06-19 17:45:34 +02:00
dontUnpack = true;
2018-03-19 21:27:18 +01:00
installPhase = ''
runHook preInstall
makeWrapper ${jdk11}/bin/java $out/bin/metabase --add-flags "-jar $src"
runHook postInstall
2018-03-19 21:27:18 +01:00
'';
meta = with lib; {
2019-08-01 19:01:13 +02:00
description = "The easy, open source way for everyone in your company to ask questions and learn from data";
homepage = "https://metabase.com";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
license = licenses.agpl3Only;
platforms = platforms.all;
2019-08-12 13:14:36 +02:00
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
2018-03-19 21:27:18 +01:00
};
2021-12-11 00:11:52 +01:00
passthru.tests = {
inherit (nixosTests) metabase;
};
2018-03-19 21:27:18 +01:00
}