2015-11-04 12:56:15 -08:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
2019-09-12 07:25:05 -07:00
|
|
|
, libsoup, gnome3 }:
|
2010-01-26 14:22:11 -08:00
|
|
|
|
2016-12-11 11:07:42 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-26 15:11:26 -07:00
|
|
|
name = "homebank-5.2.8";
|
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";
|
2019-09-26 15:11:26 -07:00
|
|
|
sha256 = "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y";
|
2010-01-26 14:22:11 -08:00
|
|
|
};
|
|
|
|
|
2016-12-11 11:07:42 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2019-09-12 07:25:05 -07:00
|
|
|
buildInputs = [ gtk libofx intltool libsoup
|
2019-02-13 13:47:50 -08:00
|
|
|
gnome3.adwaita-icon-theme ];
|
2010-01-26 14:22:11 -08:00
|
|
|
|
2016-12-11 11:07:42 -08:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-26 14:22:11 -08:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|