summary refs log blame commit diff
path: root/pkgs/servers/metabase/default.nix
blob: d64279bf7e17821e5a8ac32a855aa471137fb617 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                              

                         
                     
                     
 
                  
                                                                    
                                                                    



                                      
                    

                   
                                                                           

     
                    

                                                                                                                

                                 
                                                                       

    
{ lib, stdenv, fetchurl, makeWrapper, jdk11 }:

stdenv.mkDerivation rec {
  pname = "metabase";
  version = "0.38.0";

  src = fetchurl {
    url = "https://downloads.metabase.com/v${version}/metabase.jar";
    sha256 = "170fj2cc7drh6c1dgl60f9n79vfrsw2v57lmds677naxnq254jhp";
  };

  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 ];
  };
}