summary refs log tree commit diff
path: root/pkgs/applications/networking/ftp
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2019-06-09 13:13:11 +0200
committerVladimír Čunát <v@cunat.cz>2019-06-09 13:17:05 +0200
commitc5194a2c550194f63b8dab63b66cef1e865d270e (patch)
tree08b72e4c8e2eacf54de98a0c06c4e3821143dee3 /pkgs/applications/networking/ftp
parent7ec794f90a0f562cc6b2f3ec3938d411a8c25910 (diff)
downloadnixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar.gz
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar.bz2
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar.lz
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar.xz
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.tar.zst
nixpkgs-c5194a2c550194f63b8dab63b66cef1e865d270e.zip
Revert "filezilla: add wrapper to set necessary FZ_DATADIR"
This reverts commit 61940b89a5646987e8b7a8fe7277ec7534c957b1 #62340.
Apparently it's not needed anymore after the update, so let me clean up.
Diffstat (limited to 'pkgs/applications/networking/ftp')
-rw-r--r--pkgs/applications/networking/ftp/filezilla/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
index bc0d943e22b..6bac5bd5836 100644
--- a/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -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";