nixpkgs/pkgs/applications/office/homebank/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
776 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
2023-09-16 13:55:46 +00:00
, libsoup_3, gnome }:
stdenv.mkDerivation rec {
2021-08-14 23:50:47 +00:00
pname = "homebank";
2024-02-08 05:05:06 +00:00
version = "5.7.4";
src = fetchurl {
2023-11-20 12:08:46 +00:00
url = "https://www.gethomebank.org/public/sources/homebank-${version}.tar.gz";
2024-02-08 05:05:06 +00:00
hash = "sha256-Qs5xRsh16gyjyTORtqm/RxTbRiHGP0oJTcxviYW7VOQ=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
2023-09-16 13:55:46 +00:00
buildInputs = [ gtk libofx libsoup_3 gnome.adwaita-icon-theme];
meta = with lib; {
description = "Free, easy, personal accounting for everyone";
mainProgram = "homebank";
2023-11-20 12:08:46 +00:00
homepage = "https://www.gethomebank.org";
license = licenses.gpl2Plus;
2024-02-18 10:48:20 +00:00
maintainers = with maintainers; [ pSub frlan ];
2023-09-02 07:51:40 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}