portfolio: 0.70.4 -> 0.71.1

https://github.com/portfolio-performance/portfolio/releases/tag/0.71.1
This commit is contained in:
kilianar 2024-09-23 10:07:41 +02:00
parent 78fdf431cd
commit cf22da73ae

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