2021-01-16 18:09:27 -08:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2021-05-07 14:18:14 -07:00
|
|
|
, libsoup, gnome }:
|
2010-01-26 14:22:11 -08:00
|
|
|
|
2016-12-11 11:07:42 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2021-05-14 13:46:52 -07:00
|
|
|
name = "homebank-5.5.2";
|
2010-01-26 14:22:11 -08:00
|
|
|
src = fetchurl {
|
2016-12-11 11:07:42 -08:00
|
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
2021-05-14 13:46:52 -07:00
|
|
|
sha256 = "sha256-mJ7zeOTJ+CNLYruT1qSxS9TJjciJUZg426H0TxLFHtI=";
|
2010-01-26 14:22:11 -08:00
|
|
|
};
|
|
|
|
|
2021-01-16 18:09:27 -08:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
2019-09-12 07:25:05 -07:00
|
|
|
buildInputs = [ gtk libofx intltool libsoup
|
2021-05-07 14:18:14 -07:00
|
|
|
gnome.adwaita-icon-theme ];
|
2010-01-26 14:22:11 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2010-01-26 14:22:11 -08:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://homebank.free.fr/";
|
2016-12-11 11:07:42 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-12-11 11:07:42 -08:00
|
|
|
platforms = platforms.linux;
|
2010-01-26 14:22:11 -08:00
|
|
|
};
|
|
|
|
}
|