nixpkgs/pkgs/applications/office/homebank/default.nix
Pascal Wittmann e5c525b5a2
homebank: 5.1.1 -> 5.1.2
simplify and add myself as maintainer
2016-12-11 20:09:34 +01:00

22 lines
688 B
Nix

{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
, hicolor_icon_theme, libsoup }:
stdenv.mkDerivation rec {
name = "homebank-5.1.2";
src = fetchurl {
url = "http://homebank.free.fr/public/${name}.tar.gz";
sha256 = "09zsq5l3s8cg4slhsyybsq8v1arnhh07i0rzka3j6ahysky15pfh";
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [ gtk libofx intltool hicolor_icon_theme libsoup ];
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;
};
}