nixpkgs/pkgs/by-name/ho/homebank/package.nix
R. Ryantm 5106751c47 homebank: 5.9.1 -> 5.9.2
(cherry picked from commit 0944ebab38)
2025-06-06 11:14:50 +00:00

45 lines
856 B
Nix

{
fetchurl,
lib,
stdenv,
gtk3,
pkg-config,
libofx,
intltool,
wrapGAppsHook3,
libsoup_3,
adwaita-icon-theme,
}:
stdenv.mkDerivation rec {
pname = "homebank";
version = "5.9.2";
src = fetchurl {
url = "https://www.gethomebank.org/public/sources/homebank-${version}.tar.gz";
hash = "sha256-63WHr9yUuNx3s2pNvTSPTLwQ2M+757Mr++Yfocb6G8c=";
};
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
intltool
];
buildInputs = [
gtk3
libofx
libsoup_3
adwaita-icon-theme
];
meta = with lib; {
description = "Free, easy, personal accounting for everyone";
mainProgram = "homebank";
homepage = "https://www.gethomebank.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
pSub
frlan
];
platforms = platforms.linux ++ platforms.darwin;
};
}