2014-06-23 16:38:05 +02:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
|
2011-06-14 00:14:06 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-19 06:39:39 +02:00
|
|
|
name = "lftp-4.6.3a";
|
2007-08-04 14:40:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-16 02:30:03 +01:00
|
|
|
urls = [
|
|
|
|
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
|
|
|
|
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
|
|
|
|
];
|
2015-06-19 06:39:39 +02:00
|
|
|
sha256 = "0846p1z5v997lxaqanj8n1qkv470s8nlhs420kiby67k4j2zl576";
|
2007-08-04 14:40:45 +02:00
|
|
|
};
|
|
|
|
|
2013-01-28 14:12:29 +01:00
|
|
|
buildInputs = [ gnutls pkgconfig readline zlib ];
|
|
|
|
|
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";
|
2014-04-13 22:23:23 +02:00
|
|
|
homepage = http://lftp.yar.ru/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-01-28 14:12:29 +01:00
|
|
|
};
|
2007-08-04 14:40:45 +02:00
|
|
|
}
|