2015-11-04 20:56:15 +00:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
2016-12-11 19:09:06 +00:00
|
|
|
, hicolor_icon_theme, libsoup, gnome3 }:
|
2010-01-26 22:22:11 +00:00
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-05-29 08:34:34 +01:00
|
|
|
name = "homebank-5.1.5";
|
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";
|
2017-05-29 08:34:34 +01:00
|
|
|
sha256 = "03rkl4bvi1cmb8rqyvmhxhg63bdmb3nzqa3firfimsbphm3x6gsw";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2016-12-11 19:07:42 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2016-12-11 19:09:06 +00:00
|
|
|
buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup
|
|
|
|
gnome3.defaultIconTheme ];
|
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";
|
|
|
|
homepage = http://homebank.free.fr/;
|
2016-12-11 19:07:42 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ viric pSub ];
|
|
|
|
platforms = platforms.linux;
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
}
|