2013-01-28 14:12:29 +01:00
|
|
|
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, xz }:
|
2011-06-14 00:14:06 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-28 14:12:29 +01:00
|
|
|
name = "lftp-4.4.0";
|
2007-08-04 14:40:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-06-14 00:14:06 +02:00
|
|
|
url = "ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/${name}.tar.xz";
|
2013-01-28 14:12:29 +01:00
|
|
|
sha256 = "0cg4gabya2sygbwh2b0cdr8v719q9gv929hdb5g1mxgj8npjd4y7";
|
2007-08-04 14:40:45 +02:00
|
|
|
};
|
|
|
|
|
2013-01-28 14:12:29 +01:00
|
|
|
patches = [ ./no-gets.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ gnutls pkgconfig readline zlib ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://lftp.yar.ru/;
|
|
|
|
description = "A file transfer program supporting a number of network protocols";
|
|
|
|
license = "GPL";
|
|
|
|
};
|
2007-08-04 14:40:45 +02:00
|
|
|
}
|