2021-01-17 03:09:27 +01:00
|
|
|
{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
|
2019-09-12 16:25:05 +02:00
|
|
|
, libsoup, gnome3 }:
|
2010-01-26 23:22:11 +01:00
|
|
|
|
2016-12-11 20:07:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-03-11 16:13:00 +01:00
|
|
|
name = "homebank-5.5.1";
|
2010-01-26 23:22:11 +01:00
|
|
|
src = fetchurl {
|
2016-12-11 20:07:42 +01:00
|
|
|
url = "http://homebank.free.fr/public/${name}.tar.gz";
|
2021-03-11 16:13:00 +01:00
|
|
|
sha256 = "sha256-m7OeqtPExo0ry+IeL2xKUnTjo/OFr7Ky/3OuX9mY2gg=";
|
2010-01-26 23:22:11 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
2019-09-12 16:25:05 +02:00
|
|
|
buildInputs = [ gtk libofx intltool libsoup
|
2019-02-13 22:47:50 +01:00
|
|
|
gnome3.adwaita-icon-theme ];
|
2010-01-26 23:22:11 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2010-01-26 23:22:11 +01:00
|
|
|
description = "Free, easy, personal accounting for everyone";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://homebank.free.fr/";
|
2016-12-11 20:07:42 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-12-11 20:07:42 +01:00
|
|
|
platforms = platforms.linux;
|
2010-01-26 23:22:11 +01:00
|
|
|
};
|
|
|
|
}
|