2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, gnutls, pkg-config, readline, zlib, libidn2, gmp, libiconv, libunistring, gettext }:
|
2011-06-13 23:14:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lftp";
|
2020-08-26 10:34:13 +01:00
|
|
|
version = "4.9.2";
|
2007-08-04 13:40:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-16 01:30:03 +00:00
|
|
|
urls = [
|
2019-08-15 13:41:18 +01:00
|
|
|
"https://lftp.tech/ftp/${pname}-${version}.tar.xz"
|
|
|
|
"https://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${pname}-${version}.tar.xz"
|
|
|
|
"https://lftp.yar.ru/ftp/${pname}-${version}.tar.xz"
|
2014-11-16 01:30:03 +00:00
|
|
|
];
|
2020-08-26 10:34:13 +01:00
|
|
|
sha256 = "03b7y0h3mf4jfq5y8zw6hv9v44z3n6i8hc1iswax96y3z7sc85y5";
|
2007-08-04 13:40:45 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-01 03:31:37 +01:00
|
|
|
|
2018-03-14 22:58:20 +00:00
|
|
|
buildInputs = [ gnutls readline zlib libidn2 gmp libiconv libunistring gettext ];
|
2017-09-01 03:31:37 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
hardeningDisable = lib.optional stdenv.isDarwin "format";
|
2016-04-12 19:29:40 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2016-08-23 01:35:54 +01:00
|
|
|
"--with-readline=${readline.dev}"
|
2019-02-20 20:02:34 +00:00
|
|
|
"--with-zlib=${zlib.dev}"
|
|
|
|
"--without-expat"
|
2016-04-12 19:29:40 +01:00
|
|
|
];
|
2013-01-28 13:12:29 +00:00
|
|
|
|
2017-03-06 20:35:16 +00:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2016-10-23 17:02:42 +01:00
|
|
|
|
2019-02-20 20:02:34 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-01-28 13:12:29 +00:00
|
|
|
description = "A file transfer program supporting a number of network protocols";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://lftp.tech/";
|
2014-04-13 21:23:23 +01:00
|
|
|
license = licenses.gpl3;
|
2016-10-23 17:02:42 +01:00
|
|
|
platforms = platforms.unix;
|
2014-04-13 21:23:23 +01:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-01-28 13:12:29 +00:00
|
|
|
};
|
2007-08-04 13:40:45 +01:00
|
|
|
}
|