2016-04-12 19:29:40 +01:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, libidn }:
|
2011-06-13 23:14:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-12 19:29:40 +01:00
|
|
|
name = "lftp-4.7.1";
|
2007-08-04 13:40:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-16 01:30:03 +00:00
|
|
|
urls = [
|
|
|
|
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
|
|
|
|
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
|
|
|
|
];
|
2016-04-12 19:29:40 +01:00
|
|
|
sha256 = "0n4l0n6ra6z5lh6v79hc0r0hhrsq0l6c47ir15vmq80sbgc9mmwv";
|
2007-08-04 13:40:45 +01:00
|
|
|
};
|
|
|
|
|
2016-04-12 19:29:40 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gnutls readline zlib libidn ];
|
|
|
|
|
|
|
|
configureFlags = [
|
2016-08-23 01:35:54 +01:00
|
|
|
"--with-readline=${readline.dev}"
|
2016-04-12 19:29:40 +01:00
|
|
|
];
|
2013-01-28 13:12:29 +00:00
|
|
|
|
2014-04-13 21:23:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-28 13:12:29 +00:00
|
|
|
description = "A file transfer program supporting a number of network protocols";
|
2014-04-13 21:23:23 +01:00
|
|
|
homepage = http://lftp.yar.ru/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-01-28 13:12:29 +00:00
|
|
|
};
|
2007-08-04 13:40:45 +01:00
|
|
|
}
|