3
0
Fork 0
forked from mirrors/nixpkgs
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-15 00:50:47 +01:00
pname = "homebank";
2022-02-11 23:03:20 +00:00
version = "5.5.4";
src = fetchurl {
2021-08-15 00:50:47 +01:00
url = "http://homebank.free.fr/public/homebank-${version}.tar.gz";
2022-02-11 23:03:20 +00:00
sha256 = "sha256-DQZpvKCZNArlwhPqE8srkyg7/IoOTPelkCwYKTZuV2U=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
2021-08-15 00:50:47 +01:00
buildInputs = [ gtk libofx intltool 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;
};
}