2015-11-04 20:56:15 +00:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
2016-10-16 18:28:38 +01:00
|
|
|
, hicolor_icon_theme, libsoup}:
|
2010-01-26 22:22:11 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
download_root = "http://homebank.free.fr/public/";
|
2016-11-11 15:34:11 +00:00
|
|
|
name = "homebank-5.1.1";
|
2010-01-26 22:22:11 +00:00
|
|
|
lastrelease = download_root + name + ".tar.gz";
|
|
|
|
oldrelease = download_root + "old/" + name + ".tar.gz";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [ lastrelease oldrelease ];
|
2016-11-11 15:34:11 +00:00
|
|
|
sha256 = "1gd4b8fsq89w486mfrclw4r1nrgh7lxp4sncbgprbz9id7f6vlww";
|
2010-01-26 22:22:11 +00:00
|
|
|
};
|
|
|
|
|
2016-10-16 18:28:38 +01:00
|
|
|
buildInputs = [ pkgconfig gtk libofx intltool hicolor_icon_theme
|
|
|
|
wrapGAppsHook libsoup ];
|
2010-01-26 22:22:11 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Free, easy, personal accounting for everyone";
|
|
|
|
homepage = http://homebank.free.fr/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-01-26 22:22:11 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|