13 stdenv.mkDerivation rec {
14 pname = "libfilezilla";
18 url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
19 hash = "sha256-89bA3yjzP1LPJTywP8UVeXUq5NrvKqxzRaa9feYjpsU=";
22 nativeBuildInputs = [ autoreconfHook pkg-config ];
24 buildInputs = [ gettext gnutls nettle libxcrypt ]
25 ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
27 enableParallelBuilding = true;
30 homepage = "https://lib.filezilla-project.org/";
31 description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
32 license = licenses.gpl2Plus;
33 maintainers = with maintainers; [ pSub ];
34 platforms = platforms.unix;