From 1776016bf7f6a62edcd3b83e770f6a61c45702b9 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 24 Jun 2015 10:46:34 +0200 Subject: [PATCH] filezilla: update from 3.10.3 to 3.11.0.2 --- pkgs/applications/networking/ftp/filezilla/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index e102f8037f15..98e2f6137607 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite }: -let version = "3.10.3"; in +let version = "3.11.0.2"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "13fyg64vszq8zm1qb8g963cjar8mfz0gnymx86bvih1pjiwy4s3r"; + sha256 = "1nc9d46jwz3x9dd6na1ds8rq8a797xr29r9wkhgxv6y20cla06rl"; }; configureFlags = [ @@ -19,7 +19,7 @@ stdenv.mkDerivation { ]; meta = with stdenv.lib; { - homepage = "http://filezilla-project.org/"; + homepage = http://filezilla-project.org/; description = "Graphical FTP, FTPS and SFTP client"; license = licenses.gpl2; longDescription = '' @@ -29,5 +29,6 @@ stdenv.mkDerivation { provided. ''; platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; }; }