2017-09-01 04:31:37 +02:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, libidn2, gmp, libiconv, gettext }:
|
2011-06-14 00:14:06 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-06 21:35:16 +01:00
|
|
|
name = "lftp-${version}";
|
2017-07-17 05:16:01 +02:00
|
|
|
version = "4.8.0";
|
2007-08-04 14:40:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-16 02:30:03 +01:00
|
|
|
urls = [
|
2017-03-06 21:35:16 +01:00
|
|
|
"https://lftp.tech/ftp/${name}.tar.bz2"
|
|
|
|
"ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${name}.tar.bz2"
|
2014-11-16 02:30:03 +01:00
|
|
|
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
|
|
|
|
];
|
2017-07-17 05:16:01 +02:00
|
|
|
sha256 = "0z2432zxzg808swi72yak9kia976qrjj030grk0v4p54mcib3s34";
|
2007-08-04 14:40:45 +02:00
|
|
|
};
|
|
|
|
|
2016-04-12 20:29:40 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-09-01 04:31:37 +02:00
|
|
|
|
|
|
|
buildInputs = [ gnutls readline zlib libidn2 gmp libiconv ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin gettext;
|
|
|
|
|
|
|
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
2016-04-12 20:29:40 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
2016-08-23 02:35:54 +02:00
|
|
|
"--with-readline=${readline.dev}"
|
2016-04-12 20:29:40 +02:00
|
|
|
];
|
2013-01-28 14:12:29 +01:00
|
|
|
|
2017-03-06 21:35:16 +01:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2016-10-23 18:02:42 +02:00
|
|
|
|
2014-04-13 22:23:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-28 14:12:29 +01:00
|
|
|
description = "A file transfer program supporting a number of network protocols";
|
2017-03-06 21:35:16 +01:00
|
|
|
homepage = http://lftp.tech/;
|
2014-04-13 22:23:23 +02:00
|
|
|
license = licenses.gpl3;
|
2016-10-23 18:02:42 +02:00
|
|
|
platforms = platforms.unix;
|
2014-04-13 22:23:23 +02:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-01-28 14:12:29 +01:00
|
|
|
};
|
2007-08-04 14:40:45 +02:00
|
|
|
}
|