about summary refs log tree commit diff
path: root/pkgs/applications/networking/ftp/filezilla
diff options
context:
space:
mode:
authorRSzibele <RSzibele@server.fake>2012-12-31 11:59:08 +0100
committerRSzibele <RSzibele@server.fake>2012-12-31 11:59:08 +0100
commit70fadcafcb88c770d39364cb78a774f3caece58c (patch)
tree0d2b584186abd4f5bde5909e9b0dab6b1c18204e /pkgs/applications/networking/ftp/filezilla
parent60de7967da5ab22c503ad5a3a582f091ded0ea5d (diff)
downloadnixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar.gz
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar.bz2
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar.lz
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar.xz
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.tar.zst
nixlib-70fadcafcb88c770d39364cb78a774f3caece58c.zip
Added FileZilla-3.6.0.2.
Diffstat (limited to 'pkgs/applications/networking/ftp/filezilla')
-rw-r--r--pkgs/applications/networking/ftp/filezilla/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
new file mode 100644
index 000000000000..43ee98b55dcb
--- /dev/null
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, dbus, gnutls2, wxGTK28, libidn, tinyxml, gettext, pkgconfig, xdg_utils, gtk2, sqlite36 }:
+
+let version = "3.6.0.2"; in
+stdenv.mkDerivation {
+  name = "filezilla-${version}";
+  
+  src = fetchurl {
+    url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
+    sha256 = "01n6k1q21i21451rdx3rgc4hhxghdn5b0ldzpjsp44ipgww5wsjk";
+  };
+  
+  configureFlags = [
+    "--disable-manualupdatecheck"
+  ];
+  
+  buildInputs = [ dbus gnutls2 wxGTK28 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite36 ];
+  
+  meta = {
+    homepage = "http://filezilla-project.org/";
+    description = "FileZilla is a cross-platform graphical FTP, FTPS and SFTP client a lot of features, supporting Windows, Linux, Mac OS X and more.";
+    license = "GPLv2";
+  };
+}