filezilla: 3.42.1 -> 3.43.0
This commit is contained in:
parent
df3ae76dfd
commit
0d4448183b
@ -1,13 +1,28 @@
|
|||||||
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
{ stdenv
|
||||||
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
|
, fetchurl
|
||||||
|
|
||||||
let version = "3.42.1"; in
|
, dbus
|
||||||
stdenv.mkDerivation {
|
, gettext
|
||||||
name = "filezilla-${version}";
|
, gnutls
|
||||||
|
, gtk2
|
||||||
|
, libfilezilla
|
||||||
|
, libidn
|
||||||
|
, nettle
|
||||||
|
, pkgconfig
|
||||||
|
, pugixml
|
||||||
|
, sqlite
|
||||||
|
, tinyxml
|
||||||
|
, wxGTK30
|
||||||
|
, xdg_utils
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "filezilla";
|
||||||
|
version = "3.43.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
|
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2";
|
||||||
sha256 = "083ycsycwy1szhp3mzf998wsqa74hmdxdsy07x6k81vp2cxjxijg";
|
sha256 = "13i505y34b6lg7knzznf8812d9nwpnbf3hidpq58cbv8c31m5rkg";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
@ -17,21 +32,32 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
|
dbus
|
||||||
pugixml libfilezilla nettle ];
|
gettext
|
||||||
|
gnutls
|
||||||
|
gtk2
|
||||||
|
libfilezilla
|
||||||
|
libidn
|
||||||
|
nettle
|
||||||
|
pugixml
|
||||||
|
sqlite
|
||||||
|
tinyxml
|
||||||
|
wxGTK30
|
||||||
|
xdg_utils
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://filezilla-project.org/;
|
homepage = "https://filezilla-project.org/";
|
||||||
description = "Graphical FTP, FTPS and SFTP client";
|
description = "Graphical FTP, FTPS and SFTP client";
|
||||||
license = licenses.gpl2;
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
FileZilla Client is a free, open source FTP client. It supports
|
FileZilla Client is a free, open source FTP client. It supports
|
||||||
FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
|
FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available
|
||||||
under many platforms, binaries for Windows, Linux and macOS are
|
under many platforms, binaries for Windows, Linux and macOS are
|
||||||
provided.
|
provided.
|
||||||
'';
|
'';
|
||||||
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user