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

23 lines
724 B
Nix
Raw Normal View History

{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
2016-12-11 19:09:06 +00:00
, hicolor_icon_theme, libsoup, gnome3 }:
stdenv.mkDerivation rec {
2017-10-21 22:02:40 +00:00
name = "homebank-5.1.6";
src = fetchurl {
url = "http://homebank.free.fr/public/${name}.tar.gz";
2017-10-21 22:02:40 +00:00
sha256 = "1q4h890g6a6pm6kfiavbq9sbpsnap0f854sja2y5q3x0j0ay2q98";
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
2016-12-11 19:09:06 +00:00
buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup
gnome3.defaultIconTheme ];
meta = with stdenv.lib; {
description = "Free, easy, personal accounting for everyone";
homepage = http://homebank.free.fr/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric pSub ];
platforms = platforms.linux;
};
}