2015-11-04 20:56:15 +00:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
2019-09-12 14:25:05 +00:00
|
|
|
, libsoup, gnome3 }:
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-05 07:50:37 +00:00
|
|
|
name = "homebank-5.4.1";
|
2010-01-26 22:22:11 +00:00
|
|
|
src = fetchurl {
|
2016-12-11 19:07:42 +00:00
|
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
2020-05-05 07:50:37 +00:00
|
|
|
sha256 = "1m1hpaby6zi8y0vmj2ljklp34a55l2qsr7pxw3852k2m4v5n9zsx";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2019-09-12 14:25:05 +00:00
|
|
|
buildInputs = [ gtk libofx intltool libsoup
|
2019-02-13 21:47:50 +00:00
|
|
|
gnome3.adwaita-icon-theme ];
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
meta = with stdenv.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
|
|
|
};
|
|
|
|
}
|