portfolio: 0.70.4 -> 0.71.1 (#343912)

This commit is contained in:
Peder Bergebakken Sundt 2024-09-25 10:26:23 +02:00 committed by GitHub
commit c0a39b4a6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,13 +33,13 @@ let
webkitgtk
];
in
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "PortfolioPerformance";
version = "0.70.4";
version = "0.71.1";
src = fetchurl {
url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz";
hash = "sha256-4L2hoWUFAmxyUCbQFWoIQlIhbdyncN0fGFmahPMk0FU=";
url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz";
hash = "sha256-bZZTsL2jf4m6Gvc9cXDbAsiPoluljnb1AKshMM4325Q=";
};
nativeBuildInputs = [
@ -68,12 +68,12 @@ stdenvNoCC.mkDerivation rec {
passthru.updateScript = gitUpdater { url = "https://github.com/buchen/portfolio.git"; };
meta = with lib; {
meta = {
description = "Simple tool to calculate the overall performance of an investment portfolio";
homepage = "https://www.portfolio-performance.info/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.epl10;
maintainers = with maintainers; [
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.epl10;
maintainers = with lib.maintainers; [
kilianar
oyren
shawn8901
@ -81,4 +81,4 @@ stdenvNoCC.mkDerivation rec {
mainProgram = "portfolio";
platforms = [ "x86_64-linux" ];
};
}
})