summary refs log blame commit diff
path: root/pkgs/development/libraries/libfilezilla/default.nix
blob: 0fa5c3a7db0e9dab625f1400d821dd1fdcb1b9cd (plain) (tree)
1
2
3
4
5
6
7
8
9
10







           

                         
                         
                     

                  
                                                                                        
                                                                    

    
                                    
                                          
 
                           
                                                    





                                                                                                                                    
{ stdenv
, fetchurl

, gettext
, gnutls
, nettle
, pkgconfig
}:

stdenv.mkDerivation rec {
  pname = "libfilezilla";
  version = "0.19.3";

  src = fetchurl {
    url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
    sha256 = "0fml6whdbfcwc8nfjhvrnidkscv6q2x988zf3alfjl2mdpw4jgd4";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gettext gnutls nettle ];

  meta = with stdenv.lib; {
    homepage = "https://lib.filezilla-project.org/";
    description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
  };
}