python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / office / homebank / default.nix
blob17a9cbb5924486414471cab817070e0f1fc49637
1 { fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
2 , libsoup, gnome }:
4 stdenv.mkDerivation rec {
5   pname = "homebank";
6   version = "5.5.6";
7   src = fetchurl {
8     url = "http://homebank.free.fr/public/homebank-${version}.tar.gz";
9     sha256 = "sha256-Rg6OjHLkwVIDnXqzqPXA8DxqSdrh2T6V/gLBND8vx9o=";
10   };
12   nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
13   buildInputs = [ gtk libofx libsoup gnome.adwaita-icon-theme ];
15   meta = with lib; {
16     description = "Free, easy, personal accounting for everyone";
17     homepage = "http://homebank.free.fr/";
18     license = licenses.gpl2Plus;
19     maintainers = with maintainers; [ pSub ];
20     platforms = platforms.linux;
21   };