2013-01-28 13:12:29 +00:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, xz }:
|
2011-06-13 22:14:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-06-23 14:33:37 +00:00
|
|
|
name = "lftp-4.5.2";
|
2007-08-04 12:40:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-04-13 20:18:33 +00:00
|
|
|
url = "http://lftp.yar.ru/ftp/${name}.tar.gz";
|
2014-06-23 14:33:37 +00:00
|
|
|
sha256 = "106llhq9lgvdxlf4r1p94r66fcy5ywfdfvins4dfn9irg0k5gzyv";
|
2007-08-04 12:40:45 +00:00
|
|
|
};
|
|
|
|
|
2013-01-28 13:12:29 +00:00
|
|
|
patches = [ ./no-gets.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ gnutls pkgconfig readline zlib ];
|
|
|
|
|
2014-04-13 20:23:23 +00: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 20:23:23 +00: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 12:40:45 +00:00
|
|
|
}
|