about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libfilezilla
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libfilezilla')
-rw-r--r--nixpkgs/pkgs/development/libraries/libfilezilla/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libfilezilla/default.nix b/nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
new file mode 100644
index 000000000000..2e0b77d812fb
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
@@ -0,0 +1,35 @@
+{ lib, stdenv
+, fetchurl
+, autoreconfHook
+, gettext
+, gnutls
+, nettle
+, pkg-config
+, libiconv
+, ApplicationServices
+}:
+
+stdenv.mkDerivation rec {
+  pname = "libfilezilla";
+  version = "0.31.1";
+
+  src = fetchurl {
+    url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
+    sha256 = "sha256-mX1Yh7YBXzhp03Wwy8S0lC/LJNvktDRohclGz+czFm8=";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+
+  buildInputs = [ gettext gnutls nettle ]
+    ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
+
+  enableParallelBuilding = true;
+
+  meta = with 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.unix;
+  };
+}