mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
82 lines
2.0 KiB
Nix
82 lines
2.0 KiB
Nix
{
|
|
autoPatchelfHook,
|
|
fetchurl,
|
|
glib,
|
|
glib-networking,
|
|
gtk3,
|
|
lib,
|
|
libsecret,
|
|
makeDesktopItem,
|
|
openjdk21,
|
|
stdenvNoCC,
|
|
webkitgtk_4_0,
|
|
wrapGAppsHook3,
|
|
gitUpdater,
|
|
}:
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "Portfolio";
|
|
exec = "portfolio";
|
|
icon = "portfolio";
|
|
comment = "Calculate Investment Portfolio Performance";
|
|
desktopName = "Portfolio Performance";
|
|
categories = [ "Office" ];
|
|
};
|
|
|
|
runtimeLibs = lib.makeLibraryPath [
|
|
glib
|
|
glib-networking
|
|
gtk3
|
|
libsecret
|
|
webkitgtk_4_0
|
|
];
|
|
in
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "PortfolioPerformance";
|
|
version = "0.72.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz";
|
|
hash = "sha256-IYidpwN82j/XKUV+Z3V2pNkxTh9BTTCYD+322ILxZgU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/portfolio
|
|
cp -av ./* $out/portfolio
|
|
|
|
makeWrapper $out/portfolio/PortfolioPerformance $out/bin/portfolio \
|
|
--prefix LD_LIBRARY_PATH : "${runtimeLibs}" \
|
|
--prefix PATH : ${openjdk21}/bin
|
|
|
|
# Create desktop item
|
|
mkdir -p $out/share/applications
|
|
cp ${desktopItem}/share/applications/* $out/share/applications
|
|
mkdir -p $out/share/pixmaps
|
|
ln -s $out/portfolio/icon.xpm $out/share/pixmaps/portfolio.xpm
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { url = "https://github.com/buchen/portfolio.git"; };
|
|
|
|
meta = {
|
|
description = "Simple tool to calculate the overall performance of an investment portfolio";
|
|
homepage = "https://www.portfolio-performance.info/";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.epl10;
|
|
maintainers = with lib.maintainers; [
|
|
kilianar
|
|
oyren
|
|
shawn8901
|
|
];
|
|
mainProgram = "portfolio";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
})
|