2019-04-03 22:55:49 +02:00
|
|
|
{ fetchurl, stdenv, gtk, pkgconfig, libgsf, libofx, intltool, wrapGAppsHook
|
2018-02-25 03:23:58 +01:00
|
|
|
, hicolor-icon-theme, libsoup, gnome3 }:
|
2017-08-14 20:10:13 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "grisbi-${version}";
|
2019-04-03 22:55:11 +02:00
|
|
|
version = "1.2.1";
|
2017-08-14 20:10:13 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/grisbi/${name}.tar.bz2";
|
2019-04-03 22:55:11 +02:00
|
|
|
sha1 = "1159c5491967fa7afd251783013579ffb45b891b";
|
2017-08-14 20:10:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2019-04-03 22:55:49 +02:00
|
|
|
buildInputs = [ gtk libgsf libofx intltool hicolor-icon-theme libsoup
|
2019-02-13 22:47:50 +01:00
|
|
|
gnome3.adwaita-icon-theme ];
|
2017-08-14 20:10:13 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A personnal accounting application.";
|
|
|
|
longDescription = ''
|
|
|
|
Grisbi is an application written by French developers, so it perfectly
|
|
|
|
respects French accounting rules. Grisbi can manage multiple accounts,
|
|
|
|
currencies and users. It manages third party, expenditure and receipt
|
|
|
|
categories, budgetary lines, financial years, budget estimates, bankcard
|
|
|
|
management and other information that make Grisbi adapted for
|
|
|
|
associations.
|
|
|
|
'';
|
|
|
|
homepage = "http://grisbi.org";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|