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

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

23 lines
704 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
, libsoup, gnome }:
stdenv.mkDerivation rec {
2021-08-14 23:50:47 +00:00
pname = "homebank";
2022-07-31 14:29:20 +00:00
version = "5.5.6";
src = fetchurl {
2021-08-14 23:50:47 +00:00
url = "http://homebank.free.fr/public/homebank-${version}.tar.gz";
2022-07-31 14:29:20 +00:00
sha256 = "sha256-Rg6OjHLkwVIDnXqzqPXA8DxqSdrh2T6V/gLBND8vx9o=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ];
buildInputs = [ gtk libofx libsoup gnome.adwaita-icon-theme ];
meta = with lib; {
description = "Free, easy, personal accounting for everyone";
homepage = "http://homebank.free.fr/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}