2021-01-17 02:09:27 +00:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2023-09-16 13:55:46 +00:00
|
|
|
, libsoup_3, gnome }:
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-14 23:50:47 +00:00
|
|
|
pname = "homebank";
|
2024-02-08 05:05:06 +00:00
|
|
|
version = "5.7.4";
|
2010-01-26 22:22:11 +00:00
|
|
|
src = fetchurl {
|
2023-11-20 12:08:46 +00:00
|
|
|
url = "https://www.gethomebank.org/public/sources/homebank-${version}.tar.gz";
|
2024-02-08 05:05:06 +00:00
|
|
|
hash = "sha256-Qs5xRsh16gyjyTORtqm/RxTbRiHGP0oJTcxviYW7VOQ=";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2022-09-25 02:49:25 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
|
2023-09-16 13:55:46 +00:00
|
|
|
buildInputs = [ gtk libofx libsoup_3 gnome.adwaita-icon-theme];
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-01-26 22:22:11 +00:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
2023-11-20 12:08:46 +00:00
|
|
|
homepage = "https://www.gethomebank.org";
|
2016-12-11 19:07:42 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2024-02-18 10:48:20 +00:00
|
|
|
maintainers = with maintainers; [ pSub frlan ];
|
2023-09-02 07:51:40 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
}
|