Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 757f026f814a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 48fba15ae84e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 19, 2018

  1. metabase: 0.28.1 -> 0.28.6

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Apr 19, 2018
    Copy the full SHA
    48fba15 View commit details
Showing with 8 additions and 7 deletions.
  1. +8 −7 pkgs/servers/metabase/default.nix
15 changes: 8 additions & 7 deletions pkgs/servers/metabase/default.nix
Original file line number Diff line number Diff line change
@@ -2,25 +2,26 @@

stdenv.mkDerivation rec {
name = "metabase-${version}";
version = "0.28.1";
version = "0.28.6";

jar = fetchurl {
src = fetchurl {
url = "http://downloads.metabase.com/v${version}/metabase.jar";
sha256 = "1nv3y4pnvzd7lwyj14nmhr3k52qd8hilcjxvd7qr3hb7kzmjvbzk";
sha256 = "1dzs57yyx6k93gvyva9y38xdb4pbvdliad3zzgk3vs74fp1zh2vq";
};

nativeBuildInputs = [ makeWrapper ];

unpackPhase = "true";

installPhase = ''
makeWrapper ${jre}/bin/java $out/bin/metabase --add-flags "-jar $jar"
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;
maintainers = with maintainers; [ schneefux ];
homepage = https://metabase.com;
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ schneefux thoughtpolice ];
};
}