2014-06-23 07:38:05 -07:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
|
2011-06-13 15:14:06 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-18 21:39:39 -07:00
|
|
|
name = "lftp-4.6.3a";
|
2007-08-04 05:40:45 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-15 17:30:03 -08:00
|
|
|
urls = [
|
|
|
|
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
|
|
|
|
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
|
|
|
|
];
|
2015-06-18 21:39:39 -07:00
|
|
|
sha256 = "0846p1z5v997lxaqanj8n1qkv470s8nlhs420kiby67k4j2zl576";
|
2007-08-04 05:40:45 -07:00
|
|
|
};
|
|
|
|
|
2013-01-28 05:12:29 -08:00
|
|
|
buildInputs = [ gnutls pkgconfig readline zlib ];
|
|
|
|
|
2014-04-13 13:23:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-28 05:12:29 -08:00
|
|
|
description = "A file transfer program supporting a number of network protocols";
|
2014-04-13 13:23:23 -07:00
|
|
|
homepage = http://lftp.yar.ru/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-01-28 05:12:29 -08:00
|
|
|
};
|
2007-08-04 05:40:45 -07:00
|
|
|
}
|