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

    
                                                  
                                                                
                                
 
                           

                                                                 
                                
                                             
                                

    
{ fetchurl, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook
, hicolor-icon-theme, libsoup, gnome3 }:

stdenv.mkDerivation rec {
  name = "homebank-5.2.7";
  src = fetchurl {
    url = "http://homebank.free.fr/public/${name}.tar.gz";
    sha256 = "0pzbn0wlppwbap19isbv8vv3cq7xswladhc272ykaya78r1bxvcf";
  };

  nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
  buildInputs = [ gtk libofx intltool hicolor-icon-theme libsoup
    gnome3.adwaita-icon-theme ];

  meta = with stdenv.lib; {
    description = "Free, easy, personal accounting for everyone";
    homepage = http://homebank.free.fr/;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
  };
}