2020-05-05 17:21:12 +00:00
|
|
|
{ fetchurl
|
|
|
|
, stdenv
|
|
|
|
, gtk
|
|
|
|
, pkgconfig
|
|
|
|
, libgsf
|
|
|
|
, libofx
|
|
|
|
, intltool
|
|
|
|
, wrapGAppsHook
|
|
|
|
, libsoup
|
|
|
|
, gnome3
|
|
|
|
}:
|
2017-08-14 18:10:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "grisbi";
|
2020-02-13 08:02:23 +00:00
|
|
|
version = "1.2.2";
|
2017-08-14 18:10:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
|
2020-05-05 17:21:12 +00:00
|
|
|
sha256 = "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw";
|
2017-08-14 18:10:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2020-05-05 17:21:12 +00:00
|
|
|
buildInputs = [
|
|
|
|
gtk
|
|
|
|
libgsf
|
|
|
|
libofx
|
|
|
|
intltool
|
|
|
|
libsoup
|
|
|
|
gnome3.adwaita-icon-theme
|
|
|
|
];
|
2017-08-14 18:10:13 +00: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.
|
|
|
|
'';
|
2020-05-05 17:21:12 +00:00
|
|
|
homepage = "https://grisbi.org";
|
2017-08-14 18:10:13 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|