b0336c9854
Upstream says: 2015-08-20: lftp-4.6.4 released. Some bugs fixed, minor features added.
24 lines
638 B
Nix
24 lines
638 B
Nix
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lftp-4.6.4";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
|
|
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
|
|
];
|
|
sha256 = "0zj0dd6s3nzwdawxjp0xw31ipsa4vzimmg5bzq952q2f29vd0akn";
|
|
};
|
|
|
|
buildInputs = [ gnutls pkgconfig readline zlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A file transfer program supporting a number of network protocols";
|
|
homepage = http://lftp.yar.ru/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|