2014-04-15 17:01:53 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-04-04 09:42:41 -04:00
|
|
|
|
;;; Copyright © 2014, 2015, 2018, 2021, 2021 Ludovic Courtès <ludo@gnu.org>
|
2015-02-21 13:24:54 -05:00
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2015-03-05 12:14:43 -05:00
|
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2021-03-30 05:18:09 -04:00
|
|
|
|
;;; Copyright © 2016–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-02-15 00:22:07 -05:00
|
|
|
|
;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
|
2021-03-30 05:18:09 -04:00
|
|
|
|
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
2021-10-04 11:01:23 -04:00
|
|
|
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
2022-02-15 08:37:58 -05:00
|
|
|
|
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
|
2014-04-15 17:01:53 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages ftp)
|
2018-07-03 09:27:10 -04:00
|
|
|
|
#:use-module ((guix licenses) #:select (gpl2 gpl2+ gpl3+ clarified-artistic))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-02-21 13:24:54 -05:00
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix packages)
|
2021-07-01 22:43:28 -04:00
|
|
|
|
#:use-module (guix utils)
|
2015-02-21 13:24:54 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2016-11-05 13:28:42 -04:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2017-02-15 00:22:07 -05:00
|
|
|
|
#:use-module (gnu packages check)
|
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2016-11-05 13:28:42 -04:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2017-02-15 00:27:11 -05:00
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
|
#:use-module (gnu packages libidn)
|
2021-03-30 05:18:09 -04:00
|
|
|
|
#:use-module (gnu packages linux)
|
2014-04-15 17:01:53 -04:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
2017-02-15 00:27:11 -05:00
|
|
|
|
#:use-module (gnu packages nettle)
|
2014-04-15 17:01:53 -04:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-02-15 00:27:11 -05:00
|
|
|
|
#:use-module (gnu packages readline)
|
gnu: Move sqlite to separate module.
* gnu/packages/databases.scm (sqlite, sqlite-3.26.0, sqlite-with-fts5,
sqlite-with-column-metadata): Move variables from here...
* gnu/packages/sqlite.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/apl.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/code.scm,
gnu/packages/crypto.scm,
gnu/packages/databases.scm,
gnu/packages/dc.scm,
gnu/packages/disk.scm,
gnu/packages/ebook.scm,
gnu/packages/education.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/file-systems.scm,
gnu/packages/freedesktop.scm,
gnu/packages/ftp.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gnome.scm,
gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/gps.scm,
gnu/packages/guile.scm,
gnu/packages/ibus.scm,
gnu/packages/kerberos.scm,
gnu/packages/kodi.scm,
gnu/packages/lisp.scm,
gnu/packages/mail.scm,
gnu/packages/messaging.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nfs.scm,
gnu/packages/ocaml.scm,
gnu/packages/package-management.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/php.scm,
gnu/packages/python.scm,
gnu/packages/qt.scm,
gnu/packages/ruby.scm,
gnu/packages/scheme.scm,
gnu/packages/sync.scm,
gnu/packages/syndication.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/web-browsers.scm,
gnu/packages/webkit.scm: Adjust module references.
2019-01-15 15:47:05 -05:00
|
|
|
|
#:use-module (gnu packages sqlite)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 15:41:22 -04:00
|
|
|
|
#:use-module (gnu packages tls)
|
2017-02-15 00:27:11 -05:00
|
|
|
|
#:use-module (gnu packages wxwidgets)
|
|
|
|
|
#:use-module (gnu packages xml))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
|
|
|
|
|
(define-public lftp
|
|
|
|
|
(package
|
|
|
|
|
(name "lftp")
|
2020-08-15 19:45:47 -04:00
|
|
|
|
(version "4.9.2")
|
2014-04-15 17:01:53 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2017-02-01 07:14:14 -05:00
|
|
|
|
;; See https://lftp.tech/get.html for mirrors.
|
|
|
|
|
(uri (list (string-append "https://lftp.tech/ftp/lftp-"
|
2015-05-13 16:45:41 -04:00
|
|
|
|
version ".tar.xz")
|
2016-12-13 00:15:52 -05:00
|
|
|
|
(string-append "https://lftp.tech/ftp/old/lftp-"
|
2017-02-01 07:14:14 -05:00
|
|
|
|
version ".tar.xz")
|
|
|
|
|
(string-append "ftp://ftp.st.ryukoku.ac.jp/pub/network/"
|
|
|
|
|
"ftp/lftp/lftp-" version ".tar.xz")))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-08-15 19:45:47 -04:00
|
|
|
|
"03b7y0h3mf4jfq5y8zw6hv9v44z3n6i8hc1iswax96y3z7sc85y5"))))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list zlib readline gnutls))
|
2016-10-18 16:46:51 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
;; Disable tests that require network access, which is most of them.
|
|
|
|
|
(add-before 'check 'disable-impure-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "tests/Makefile"
|
|
|
|
|
(("(ftp-cls-l|ftp-list|http-get)\\$\\(EXEEXT\\)") "")
|
2018-08-09 11:25:48 -04:00
|
|
|
|
(("lftp-https-get ") ""))
|
|
|
|
|
#t)))
|
2016-10-18 16:46:51 -04:00
|
|
|
|
#:configure-flags
|
|
|
|
|
(list (string-append "--with-readline="
|
|
|
|
|
(assoc-ref %build-inputs "readline")))))
|
2016-12-13 00:15:52 -05:00
|
|
|
|
(home-page "https://lftp.tech/")
|
2014-04-15 17:01:53 -04:00
|
|
|
|
(synopsis "Command-line file transfer program")
|
|
|
|
|
(description
|
|
|
|
|
"LFTP is a sophisticated FTP/HTTP client, and a file transfer program
|
|
|
|
|
supporting a number of network protocols. Like Bash, it has job control and
|
|
|
|
|
uses the Readline library for input. It has bookmarks, a built-in mirror
|
|
|
|
|
command, and can transfer several files in parallel. It was designed with
|
|
|
|
|
reliability in mind.")
|
|
|
|
|
(license gpl3+)))
|
2014-11-19 11:37:35 -05:00
|
|
|
|
|
|
|
|
|
(define-public ncftp
|
|
|
|
|
(package
|
|
|
|
|
(name "ncftp")
|
2018-02-18 13:17:07 -05:00
|
|
|
|
(version "3.2.6")
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "ftp://ftp.ncftp.com/ncftp/ncftp-"
|
2018-02-18 13:17:07 -05:00
|
|
|
|
version "-src.tar.xz"))
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-02-18 13:17:07 -05:00
|
|
|
|
"1389657cwgw5a3kljnqmhvfh4vr2gcr71dwz1mlhf22xq23hc82z"))
|
2022-06-05 23:03:56 -04:00
|
|
|
|
(patches
|
|
|
|
|
(search-patches
|
|
|
|
|
"ncftp-reproducible.patch"))
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; Use the right 'rm' and 'ls'.
|
|
|
|
|
(substitute* (cons "configure"
|
|
|
|
|
(find-files "."
|
|
|
|
|
"^(Makefile\\.in|.*\\.sh)$"))
|
|
|
|
|
(("/bin/(rm|ls)" _ command)
|
|
|
|
|
command))
|
|
|
|
|
|
|
|
|
|
;; This is free software, avoid any confusion.
|
|
|
|
|
(substitute* (find-files "." "\\.c$")
|
|
|
|
|
(("a freeware program")
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 07:47:34 -04:00
|
|
|
|
"free software"))
|
|
|
|
|
#t))))
|
2021-04-04 09:42:41 -04:00
|
|
|
|
(properties
|
|
|
|
|
`((release-monitoring-url . "https://www.ncftp.com/download/")))
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2016-10-19 11:00:35 -04:00
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; This is an old 'configure' script that doesn't
|
|
|
|
|
;; understand variables passed as arguments.
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(setenv "CONFIG_SHELL" (which "sh"))
|
|
|
|
|
(setenv "SHELL" (which "sh"))
|
2021-10-04 11:01:23 -04:00
|
|
|
|
(setenv "CFLAGS" "-fcommon")
|
2019-01-25 06:15:04 -05:00
|
|
|
|
(invoke "./configure"
|
|
|
|
|
(string-append "--prefix=" out))))))
|
|
|
|
|
#:tests? #f)) ;there are no tests
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(inputs (list ncurses))
|
2020-01-18 18:57:26 -05:00
|
|
|
|
(home-page "https://www.ncftp.com/ncftp/")
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(synopsis "Command-line File Transfer Protocol (FTP) client")
|
|
|
|
|
(description
|
|
|
|
|
"NcFTP Client (or just NcFTP) is a set of command-line programs to access
|
gnu: Fix descriptions to not use quotes.
* gnu/packages/admin.scm (wpa-supplicant-minimal, mingetty, di),
* gnu/packages/audio.scm (fil-plugins),
* gnu/packages/base.scm (make-ld-wrapper, make-glibc-locales),
* gnu/packages/bioinformatics.scm (r-samtools),
* gnu/packages/chez.scm (chez-mit),
* gnu/packages/commencement.scm (make-gcc-toolchain),
* gnu/packages/compression.scm (fastjar),
* gnu/packages/cran.scm (r-maps, r-rcpp),
* gnu/packages/databases.scm (sparql-query),
* gnu/packages/dunst.scm (dunst),
* gnu/packages/ftp.scm (ncftp),
* gnu/packages/gl.scm (freeglut),
* gnu/packages/haskell-check.scm (ghc-tasty-golden),
* gnu/packages/haskell.scm (ghc-case-insensitive, ghc-text,
ghc-haskell-src, ghc-syb, ghc-deepseq-generics, ghc-network-uri,
ghc-rerebase, ghc-zlib),
* gnu/packages/image.scm (jbig2dec),
* gnu/packages/kde-frameworks.scm (kinit, karchive),
* gnu/packages/linux.scm (wireless-tools, perf, module-init-tools, kbd),
* gnu/packages/lirc.scm (lirc),
* gnu/packages/lisp.scm (uglify-js),
* gnu/packages/mate.scm (mate-netbook),
* gnu/packages/microcom.scm (microcom),
* gnu/packages/music.scm (bristol),
* gnu/packages/networking.scm (perl-geo-ip),
* gnu/packages/patchutils.scm (patches),
* gnu/packages/perl-check.scm (perl-test-more-utf8),
* gnu/packages/perl.scm (perl-log-report-optional, perl-file-which,
perl-io-tty, perl-log-any, perl-digest-sha1, perl-class-load,
perl-regexp-common, perl-module-pluggable, perl-class-modifier),
* gnu/packages/python-xyz.scm (python-backports-abc, python-natsort),
* gnu/packages/samba.scm (iniparser),
* gnu/packages/search.scm (mlocate),
* gnu/packages/spice.scm (spice),
* gnu/packages/statistics.scm (r-dt, r-lubridate, r-estimability,
r-commonmark, r-digest, r-viridislite, r-stringr),
* gnu/packages/tex.scm (texlive-latex-changebar),
* gnu/packages/version-control.scm (subversion),
* gnu/packages/w3m.scm (w3m),
* gnu/packages/web.scm (perl-http-parser,
perl-plack-middleware-reverseproxy),
* gnu/packages/xorg.scm (xkeyboard-config, mkfontdir, xcursor-theme,
mkfontscale, xinit, font-alias)[description]: Use @code instead of quotes.
2019-03-31 09:39:43 -04:00
|
|
|
|
File Transfer Protocol (FTP) servers. This includes @code{ncftp}, an interactive
|
|
|
|
|
FTP browser, as well as non-interactive commands such as @code{ncftpput} and
|
|
|
|
|
@code{ncftpget}.")
|
2014-11-19 11:37:35 -05:00
|
|
|
|
(license clarified-artistic)))
|
2015-02-21 13:24:54 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-public weex
|
|
|
|
|
(package
|
|
|
|
|
(name "weex")
|
2016-11-05 13:28:42 -04:00
|
|
|
|
(version "2.8.2")
|
2015-02-21 13:24:54 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
2016-11-05 13:28:42 -04:00
|
|
|
|
(string-append "mirror://sourceforge/weex/weex/"
|
|
|
|
|
"/weex_" version ".tar.gz"))
|
2015-02-21 13:24:54 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-11-05 13:28:42 -04:00
|
|
|
|
"1ir761hjncr1bamaqcw9j7x57xi3s9jax3223bxwbq30a0vsw1pd"))))
|
2015-02-21 13:24:54 -05:00
|
|
|
|
(build-system gnu-build-system)
|
2016-11-05 13:28:42 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
|
(list automake autoconf gettext-minimal))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-11 19:00:00 -05:00
|
|
|
|
(home-page "https://weex.sourceforge.net/")
|
2015-02-21 13:24:54 -05:00
|
|
|
|
(synopsis "Non-interactive client for FTP synchronization")
|
|
|
|
|
(description
|
|
|
|
|
"Weex is a utility designed to automate the task of remotely
|
|
|
|
|
maintaining a web page or other FTP archive. It synchronizes a set of
|
|
|
|
|
local files to a remote server by performing uploads and remote deletes
|
|
|
|
|
as required.")
|
|
|
|
|
(license gpl2+)))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
|
|
|
|
|
(define-public libfilezilla
|
|
|
|
|
(package
|
|
|
|
|
(name "libfilezilla")
|
2022-11-27 09:19:00 -05:00
|
|
|
|
(version "0.39.2")
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2018-09-21 08:55:20 -04:00
|
|
|
|
(uri (string-append "https://download.filezilla-project.org/"
|
2019-02-14 22:59:00 -05:00
|
|
|
|
"libfilezilla/libfilezilla-" version ".tar.bz2"))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(sha256
|
2022-11-27 09:19:00 -05:00
|
|
|
|
(base32 "1x2rixppmvdpn9m01hmh3yqzpczxbkw301hx27n5bfq0dbnx9aar"))))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(build-system gnu-build-system)
|
2020-10-06 21:46:11 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list "--disable-static")))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(native-inputs
|
2021-12-17 14:24:50 -05:00
|
|
|
|
(list cppunit gettext-minimal pkg-config))
|
2018-12-05 02:16:34 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gnutls nettle))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(home-page "https://lib.filezilla-project.org")
|
|
|
|
|
(synopsis "Cross-platform C++ library used by Filezilla client")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides some basic functionality to build high-performing,
|
2018-01-04 23:09:15 -05:00
|
|
|
|
platform-independent programs.
|
|
|
|
|
|
|
|
|
|
Some of the highlights include:
|
|
|
|
|
@itemize
|
|
|
|
|
@item
|
|
|
|
|
A type-safe, multi-threaded event system that's simple to use yet efficient.
|
|
|
|
|
@item
|
|
|
|
|
Timers for periodic events.
|
|
|
|
|
@item
|
|
|
|
|
A @code{datetime} class that not only tracks timestamp but also their accuracy,
|
|
|
|
|
which simplifies dealing with timestamps originating from different sources.
|
|
|
|
|
@item
|
|
|
|
|
Simple process handling for spawning child processes with redirected input and
|
|
|
|
|
output.
|
|
|
|
|
@end itemize\n")
|
2017-02-15 00:22:07 -05:00
|
|
|
|
(license gpl2+)))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
|
|
|
|
|
(define-public filezilla
|
|
|
|
|
(package
|
|
|
|
|
(name "filezilla")
|
2022-11-27 09:19:18 -05:00
|
|
|
|
(version "3.62.2")
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2018-09-21 11:13:13 -04:00
|
|
|
|
(uri (string-append "https://download.filezilla-project.org/client/"
|
|
|
|
|
"FileZilla_" version "_src.tar.bz2"))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(sha256
|
2022-11-27 09:19:18 -05:00
|
|
|
|
(base32 "04lcffmvl1356iyc14pikq3z6jikj6qn0v0zd57lgsm0biihjrx7"))))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(build-system gnu-build-system)
|
2017-03-04 23:02:51 -05:00
|
|
|
|
(arguments
|
|
|
|
|
;; Don't let filezilla phone home to check for updates.
|
|
|
|
|
'(#:configure-flags '("--disable-autoupdatecheck")))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(native-inputs
|
2021-12-17 14:58:27 -05:00
|
|
|
|
(list cppunit gettext-minimal pkg-config xdg-utils))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list dbus
|
|
|
|
|
gnutls
|
|
|
|
|
gtk+
|
|
|
|
|
libfilezilla
|
|
|
|
|
libidn
|
|
|
|
|
nettle
|
|
|
|
|
pugixml
|
|
|
|
|
sqlite
|
gnu: wxWidgets: Update to 3.2.1.
* gnu/packages/wxwidgets.scm (wxwidgets): Update to 3.2.1.
[source](modules, snippet): New fields.
[inputs]: Remove SDL. Add CATCH-FRAMEWORK, EXPAT, GSTREAMER,
GST-PLUGINS-BASE, LIBNOTIFY, LIBPNG, LIBSECRET, PCRE, SDL2,
WEBKITGTK-WITH-LIBSOUP2, and ZLIB
[arguments]: Add "--enable-mediactrl" and "--enable-gui" to #:configure-flags.
Remove aarch64 workaround. Install catch header in refer-to-inputs phase.
Add phase to adjust WebKitGTK version.
(wxwidgets-3.1, wxwidgets-gtk2-3.1): Remove variables.
(wxwidgets-3.0, (wxwidgets-gtk2-3.0): New variables.
(wxsvg)[inputs]: Change from WXWIDGETS-3.1 to WXWIDGETS.
* gnu/packages/audio.scm (audacity)[inputs]: Likewise.
* gnu/packages/cdrom.scm (dvdstyler)[inputs]: Likewise.
* gnu/packages/astronomy.scm (imppg)[inputs]: Change from WXWIDGETS to
WXWIDGETS-3.0.
* gnu/packages/ftp.scm (filezilla)[inputs]: Likewise.
* gnu/packages/games.scm (megaglest)[inputs]: Likewise.
* gnu/packages/geo.scm (opencpn)[inputs]: Likewise.
* gnu/packages/music.scm (sooperlooper)[inputs]: Likewise.
* gnu/packages/engineering.scm (kicad)[arguments]: Enable EGL support.
2022-11-26 11:43:26 -05:00
|
|
|
|
wxwidgets-3.0))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
(home-page "https://filezilla-project.org")
|
|
|
|
|
(synopsis "Full-featured graphical FTP/FTPS/SFTP client")
|
|
|
|
|
(description
|
|
|
|
|
"Filezilla client supports FTP, FTP over SSL/TLS (FTPS),
|
|
|
|
|
SSH File Transfer Protocol (SFTP), HTTP/1.1, SOCKS5, FTP-Proxy, IPv6
|
|
|
|
|
and others features such as bookmarks, drag and drop, filename filters,
|
|
|
|
|
directory comparison and more.")
|
|
|
|
|
(license gpl2+)
|
|
|
|
|
(properties '((upstream-name . "FileZilla")))))
|
2018-07-03 09:27:10 -04:00
|
|
|
|
|
|
|
|
|
(define-public vsftpd
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(package
|
|
|
|
|
(name "vsftpd")
|
2021-09-03 12:21:56 -04:00
|
|
|
|
(version "3.0.5")
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://security.appspot.com/downloads/"
|
|
|
|
|
"vsftpd-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2021-09-03 12:21:56 -04:00
|
|
|
|
(base32 "1lwipiq8q9qzvwv6f418fbvagpz0p6v0jjplkvcsc2sb8np05di6"))))
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
2021-07-01 22:43:28 -04:00
|
|
|
|
(list (string-append "CC=" ,(cc-for-target))
|
2023-09-09 20:00:00 -04:00
|
|
|
|
;; Work around, e.g., “ssl.c:149:7: error: ‘EC_KEY_free’ is
|
|
|
|
|
;; deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations]”
|
|
|
|
|
"CFLAGS=-Wno-deprecated-declarations"
|
2021-07-01 23:20:49 -04:00
|
|
|
|
;; vsf_findlibs.sh looks only for hard-coded {/usr,}/lib file names
|
|
|
|
|
;; that will never exist on Guix. Manage libraries ourselves.
|
|
|
|
|
"LDFLAGS=-lcap -lpam"
|
2021-07-01 22:42:51 -04:00
|
|
|
|
"INSTALL=install -D")
|
2021-07-01 22:35:44 -04:00
|
|
|
|
#:tests? #f ; no test suite
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2021-07-01 23:20:49 -04:00
|
|
|
|
(add-after 'unpack 'build-SSL
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "builddefs.h"
|
|
|
|
|
(("#undef (VSF_BUILD_SSL)" _ symbol)
|
|
|
|
|
(string-append "#define " symbol)))))
|
2021-07-01 22:40:01 -04:00
|
|
|
|
(add-after 'unpack 'append-make-flags
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("(CFLAGS|LDFLAGS)[[:blank:]]*=" _ variable)
|
|
|
|
|
(format #f "UPSTREAM_~a +=" variable))
|
|
|
|
|
(("\\$\\((CFLAGS|LDFLAGS)\\)" _ variable)
|
|
|
|
|
(format #f "$(UPSTREAM_~a) $(~@*~a)" variable)))))
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(add-after 'unpack 'patch-installation-directory
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* "Makefile"
|
2021-07-01 22:42:51 -04:00
|
|
|
|
(("/usr") (assoc-ref outputs "out")))))
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(delete 'configure)))) ; no configure script
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libcap linux-pam openssl))
|
2021-07-01 22:53:35 -04:00
|
|
|
|
(synopsis "Small FTP server with a focus on security")
|
|
|
|
|
(description
|
|
|
|
|
"The Very Secure File Transfer Protocol Daemon or @command{vsftpd} is a
|
|
|
|
|
server that listens on a TCP socket for clients and gives them access to local
|
|
|
|
|
files via @acronym{FTP, the File Transfer Protocol}. Security is a goal; not a
|
|
|
|
|
guarantee.")
|
2021-07-01 22:35:44 -04:00
|
|
|
|
(home-page "https://security.appspot.com/vsftpd.html")
|
2021-07-01 22:53:35 -04:00
|
|
|
|
(license gpl2))) ; with OpenSSL exception
|