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