forked from mirrors/nixpkgs
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.
This commit is contained in:
parent
7ec794f90a
commit
c5194a2c55
|
@ -1,7 +1,5 @@
|
||||||
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
|
||||||
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle
|
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
|
||||||
, makeWrapper
|
|
||||||
}:
|
|
||||||
|
|
||||||
let version = "3.42.1"; in
|
let version = "3.42.1"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -20,14 +18,10 @@ stdenv.mkDerivation {
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
|
dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite
|
||||||
pugixml libfilezilla nettle makeWrapper ];
|
pugixml libfilezilla nettle ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
wrapProgram $out/bin/filezilla --set FZ_DATADIR $out
|
|
||||||
'';
|
|
||||||
|
|
||||||
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";
|
||||||
|
|
Loading…
Reference in a new issue