anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / office / grisbi / default.nix
blob911ed9715320d96a22da5c9ed2e4b969ae484fc9
1 { fetchurl
2 , lib, stdenv
3 , gtk
4 , pkg-config
5 , libgsf
6 , libofx
7 , intltool
8 , wrapGAppsHook3
9 , libsoup
10 , adwaita-icon-theme
13 stdenv.mkDerivation rec {
14   pname = "grisbi";
15   version = "2.0.5";
17   src = fetchurl {
18     url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
19     sha256 = "sha256-vTrbq/xLTfwF7/YtKzZFiiSw8A0HzzWin2ry8gPHej8=";
20   };
22   nativeBuildInputs = [ pkg-config wrapGAppsHook3 intltool ];
23   buildInputs = [
24     gtk
25     libgsf
26     libofx
27     libsoup
28     adwaita-icon-theme
29   ];
31   meta = with lib; {
32     description = "Personnal accounting application";
33     mainProgram = "grisbi";
34     longDescription = ''
35       Grisbi is an application written by French developers, so it perfectly
36       respects French accounting rules. Grisbi can manage multiple accounts,
37       currencies and users. It manages third party, expenditure and receipt
38       categories, budgetary lines, financial years, budget estimates, bankcard
39       management and other information that make Grisbi adapted for
40       associations.
41     '';
42     homepage = "https://grisbi.org";
43     license = licenses.gpl2Plus;
44     maintainers = with maintainers; [ layus ];
45     platforms = platforms.linux;
46   };