depot/third_party/nixpkgs/pkgs/applications/office/grisbi/default.nix
Default email d6cfb865ad Project import generated by Copybara.
GitOrigin-RevId: 5265d49a36bb5a18c85e6817b338b456acc3b8cc
2020-10-18 20:13:06 -04:00

47 lines
1.1 KiB
Nix

{ fetchurl
, stdenv
, gtk
, pkgconfig
, libgsf
, libofx
, intltool
, wrapGAppsHook
, libsoup
, gnome3
}:
stdenv.mkDerivation rec {
pname = "grisbi";
version = "1.2.2";
src = fetchurl {
url = "mirror://sourceforge/grisbi/${pname}-${version}.tar.bz2";
sha256 = "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw";
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [
gtk
libgsf
libofx
intltool
libsoup
gnome3.adwaita-icon-theme
];
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 = "https://grisbi.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ layus ];
platforms = platforms.linux;
};
}