2021-01-17 02:09:27 +00:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2021-05-07 21:18:14 +00:00
|
|
|
, libsoup, 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";
|
2023-08-07 20:13:22 +00:00
|
|
|
version = "5.6.6";
|
2010-01-26 22:22:11 +00:00
|
|
|
src = fetchurl {
|
2023-07-01 15:11:35 +00:00
|
|
|
url = "http://homebank.free.fr/public/sources/homebank-${version}.tar.gz";
|
2023-08-07 20:13:22 +00:00
|
|
|
hash = "sha256-ZW/N8YUU8r7SYY/+hqVYrqYW/KQqtuChfQJxXftl3A4=";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2022-09-25 02:49:25 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
|
2023-08-07 20:13:22 +00:00
|
|
|
buildInputs = [ gtk libofx libsoup 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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://homebank.free.fr/";
|
2016-12-11 19:07:42 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-12-11 19:07:42 +00:00
|
|
|
platforms = platforms.linux;
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
}
|