2021-01-17 02:09:27 +00:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2021-05-07 22:18:14 +01:00
|
|
|
, libsoup, gnome }:
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-15 00:50:47 +01:00
|
|
|
pname = "homebank";
|
2022-02-11 23:03:20 +00:00
|
|
|
version = "5.5.4";
|
2010-01-26 22:22:11 +00:00
|
|
|
src = fetchurl {
|
2021-08-15 00:50:47 +01:00
|
|
|
url = "http://homebank.free.fr/public/homebank-${version}.tar.gz";
|
2022-02-11 23:03:20 +00:00
|
|
|
sha256 = "sha256-DQZpvKCZNArlwhPqE8srkyg7/IoOTPelkCwYKTZuV2U=";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
2021-08-15 00:50:47 +01:00
|
|
|
buildInputs = [ gtk libofx intltool 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 02:11:51 +01:00
|
|
|
homepage = "http://homebank.free.fr/";
|
2016-12-11 19:07:42 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-12-11 19:07:42 +00:00
|
|
|
platforms = platforms.linux;
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
}
|