2015-11-04 23:56:15 +03:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
2019-09-12 17:25:05 +03:00
|
|
|
, libsoup, gnome3 }:
|
2010-01-27 01:22:11 +03:00
|
|
|
|
2016-12-11 22:07:42 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-21 21:31:40 +03:00
|
|
|
name = "homebank-5.3.1";
|
2010-01-27 01:22:11 +03:00
|
|
|
src = fetchurl {
|
2016-12-11 22:07:42 +03:00
|
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
2020-01-21 21:31:40 +03:00
|
|
|
sha256 = "119lyr8c33n8sa3s4l8s33ajwhyv0qgpmaigkyaqnccbkw1qdhhv";
|
2010-01-27 01:22:11 +03:00
|
|
|
};
|
|
|
|
|
2016-12-11 22:07:42 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2019-09-12 17:25:05 +03:00
|
|
|
buildInputs = [ gtk libofx intltool libsoup
|
2019-02-14 00:47:50 +03:00
|
|
|
gnome3.adwaita-icon-theme ];
|
2010-01-27 01:22:11 +03:00
|
|
|
|
2016-12-11 22:07:42 +03:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-27 01:22:11 +03:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
|
|
|
homepage = http://homebank.free.fr/;
|
2016-12-11 22:07:42 +03:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 22:50:19 +03:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-12-11 22:07:42 +03:00
|
|
|
platforms = platforms.linux;
|
2010-01-27 01:22:11 +03:00
|
|
|
};
|
|
|
|
}
|