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

23 lines
682 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook
, libsoup, gnome3 }:
stdenv.mkDerivation rec {
2021-03-11 16:13:00 +01:00
name = "homebank-5.5.1";
src = fetchurl {
url = "http://homebank.free.fr/public/${name}.tar.gz";
2021-03-11 16:13:00 +01:00
sha256 = "sha256-m7OeqtPExo0ry+IeL2xKUnTjo/OFr7Ky/3OuX9mY2gg=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ gtk libofx intltool libsoup
2019-02-13 22:47:50 +01:00
gnome3.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;
};
}