grisbi: init at 1.0.2

authored by Guillaume Maudoux and committed by Franz Pletz cc92326e f9eef3ca

+34
+32
pkgs/applications/office/grisbi/default.nix
··· 1 + { fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook 2 + , hicolor_icon_theme, libsoup, gnome3 }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "grisbi-${version}"; 6 + version = "1.0.2"; 7 + 8 + src = fetchurl { 9 + url = "mirror://sourceforge/grisbi/${name}.tar.bz2"; 10 + sha256 = "1m31a1h4i59z36ri4a22rrd29byg6wnxq37559042hdhn557kazm"; 11 + }; 12 + 13 + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 14 + buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup 15 + gnome3.defaultIconTheme ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A personnal accounting application."; 19 + longDescription = '' 20 + Grisbi is an application written by French developers, so it perfectly 21 + respects French accounting rules. Grisbi can manage multiple accounts, 22 + currencies and users. It manages third party, expenditure and receipt 23 + categories, budgetary lines, financial years, budget estimates, bankcard 24 + management and other information that make Grisbi adapted for 25 + associations. 26 + ''; 27 + homepage = "http://grisbi.org"; 28 + license = licenses.gpl2Plus; 29 + maintainers = with maintainers; [ layus ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 14469 14469 graphicsmagick = callPackage ../applications/graphics/graphicsmagick { }; 14470 14470 graphicsmagick_q16 = callPackage ../applications/graphics/graphicsmagick { quantumdepth = 16; }; 14471 14471 14472 + grisbi = callPackage ../applications/office/grisbi { gtk = gtk2; }; 14473 + 14472 14474 gtkpod = callPackage ../applications/audio/gtkpod { 14473 14475 gnome = gnome3; 14474 14476 inherit (gnome2) libglade;