2021-02-05 17:12:51 +00:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2021-05-20 23:08:51 +00:00
|
|
|
, libsoup, gnome }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-18 13:19:15 +00:00
|
|
|
pname = "homebank";
|
2023-08-10 07:59:29 +00:00
|
|
|
version = "5.6.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchurl {
|
2023-07-15 17:15:38 +00:00
|
|
|
url = "http://homebank.free.fr/public/sources/homebank-${version}.tar.gz";
|
2023-08-10 07:59:29 +00:00
|
|
|
hash = "sha256-ZW/N8YUU8r7SYY/+hqVYrqYW/KQqtuChfQJxXftl3A4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
|
2023-08-10 07:59:29 +00:00
|
|
|
buildInputs = [ gtk libofx libsoup gnome.adwaita-icon-theme];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
|
|
|
homepage = "http://homebank.free.fr/";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2023-10-09 19:29:22 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|