3d5bdd3570
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/grisbi/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/d57ny55jq154x7iv786w0c7hxsddnvf7-grisbi-1.0.4/bin/grisbi had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/d57ny55jq154x7iv786w0c7hxsddnvf7-grisbi-1.0.4/bin/.grisbi-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.0.4 with grep in /nix/store/d57ny55jq154x7iv786w0c7hxsddnvf7-grisbi-1.0.4 - directory tree listing: https://gist.github.com/88cf58691f673a3bb235fbe5a74e830e - du listing: https://gist.github.com/56e8df132720715c41cd5f30253080d8
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
|
|
, hicolor-icon-theme, libsoup, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "grisbi-${version}";
|
|
version = "1.0.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/grisbi/${name}.tar.bz2";
|
|
sha256 = "1rh2iqvi7lpz5l57vn7qk9azil3y1g65mfbi9hhbx956knh9bpf6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|