summary refs log blame commit diff
path: root/pkgs/applications/office/homebank/default.nix
blob: 50c80f659492d929c3e58a8ff4a290f145c1764b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                   
                                
 

                          
                  

                                                                    

    

                                                                   
 
                           

                                                                 


                                                   

    
{ 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;
  };
}