python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libfilezilla / default.nix
blob9d1c2f27b3b6898c4b7fbfa5d8d83d60975a3c08
1 { lib, stdenv
2 , fetchurl
3 , autoreconfHook
4 , gettext
5 , gnutls
6 , nettle
7 , pkg-config
8 , libiconv
9 , libxcrypt
10 , ApplicationServices
13 stdenv.mkDerivation rec {
14   pname = "libfilezilla";
15   version = "0.39.1";
17   src = fetchurl {
18     url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
19     hash = "sha256-89bA3yjzP1LPJTywP8UVeXUq5NrvKqxzRaa9feYjpsU=";
20   };
22   nativeBuildInputs = [ autoreconfHook pkg-config ];
24   buildInputs = [ gettext gnutls nettle libxcrypt ]
25     ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
27   enableParallelBuilding = true;
29   meta = with lib; {
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;
35   };