aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/office/grisbi
diff options
context:
space:
mode:
authorGuillaume Maudoux <layus.on@gmail.com>2017-08-14 20:10:13 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-08-15 14:52:32 +0200
commitcc92326e121b6058bbb1c929ce87dde5ed99e1e4 (patch)
treec5b89eaf2d7880a4e4c0e63ae04df3b85768a799 /pkgs/applications/office/grisbi
parentf9eef3ca797369f1abfe3115fb2740d10fc47eda (diff)
grisbi: init at 1.0.2
Diffstat (limited to 'pkgs/applications/office/grisbi')
-rw-r--r--pkgs/applications/office/grisbi/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/office/grisbi/default.nix b/pkgs/applications/office/grisbi/default.nix
new file mode 100644
index 000000000000..29c30204ddbe
--- /dev/null
+++ b/pkgs/applications/office/grisbi/default.nix
@@ -0,0 +1,32 @@
+{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
+, hicolor_icon_theme, libsoup, gnome3 }:
+
+stdenv.mkDerivation rec {
+ name = "grisbi-${version}";
+ version = "1.0.2";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/grisbi/${name}.tar.bz2";
+ sha256 = "1m31a1h4i59z36ri4a22rrd29byg6wnxq37559042hdhn557kazm";
+ };
+
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+ buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup
+ gnome3.defaultIconTheme ];
+
+ 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;
+ };
+}