filezilla: update from 3.10.3 to 3.11.0.2

This commit is contained in:
Pascal Wittmann 2015-06-24 10:46:34 +02:00
parent e17494956b
commit 1776016bf7

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite }: , pkgconfig, xdg_utils, gtk2, sqlite }:
let version = "3.10.3"; in let version = "3.11.0.2"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "filezilla-${version}"; name = "filezilla-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
sha256 = "13fyg64vszq8zm1qb8g963cjar8mfz0gnymx86bvih1pjiwy4s3r"; sha256 = "1nc9d46jwz3x9dd6na1ds8rq8a797xr29r9wkhgxv6y20cla06rl";
}; };
configureFlags = [ configureFlags = [
@ -19,7 +19,7 @@ stdenv.mkDerivation {
]; ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://filezilla-project.org/"; homepage = http://filezilla-project.org/;
description = "Graphical FTP, FTPS and SFTP client"; description = "Graphical FTP, FTPS and SFTP client";
license = licenses.gpl2; license = licenses.gpl2;
longDescription = '' longDescription = ''
@ -29,5 +29,6 @@ stdenv.mkDerivation {
provided. provided.
''; '';
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
}; };
} }