3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/office/grisbi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl
, lib, stdenv
, gtk
, pkg-config
, libgsf
, libofx
, intltool
, wrapGAppsHook
, libsoup
, gnome
}:
2017-08-14 19:10:13 +01:00
stdenv.mkDerivation rec {
pname = "grisbi";
2021-12-10 18:02:46 +00:00
version = "2.0.5";
2017-08-14 19:10:13 +01:00
src = fetchurl {
url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
2021-12-10 18:02:46 +00:00
sha256 = "sha256-vTrbq/xLTfwF7/YtKzZFiiSw8A0HzzWin2ry8gPHej8=";
2017-08-14 19:10:13 +01:00
};
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [
gtk
libgsf
libofx
intltool
libsoup
gnome.adwaita-icon-theme
];
2017-08-14 19:10:13 +01:00
meta = with lib; {
description = "A personnal accounting application";
2017-08-14 19:10:13 +01:00
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 = "https://grisbi.org";
2017-08-14 19:10:13 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ layus ];
platforms = platforms.linux;
};
}