Revert "filezilla: add wrapper to set necessary FZ_DATADIR"

This reverts commit 61940b89a5 #62340.
Apparently it's not needed anymore after the update, so let me clean up.
gstqt5
Vladimír Čunát 2019-06-09 13:13:11 +02:00
parent 7ec794f90a
commit c5194a2c55
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 2 additions and 8 deletions

View File

@ -1,7 +1,5 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle
, makeWrapper
}:
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
let version = "3.42.1"; in
stdenv.mkDerivation {
@ -20,14 +18,10 @@ stdenv.mkDerivation {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
pugixml libfilezilla nettle makeWrapper ];
pugixml libfilezilla nettle ];
enableParallelBuilding = true;
postInstall = ''
wrapProgram $out/bin/filezilla --set FZ_DATADIR $out
'';
meta = with stdenv.lib; {
homepage = https://filezilla-project.org/;
description = "Graphical FTP, FTPS and SFTP client";