nixpkgs/pkgs/tools/networking/lftp/default.nix

23 lines
604 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
stdenv.mkDerivation rec {
2014-10-07 21:15:56 +02:00
name = "lftp-4.5.5";
src = fetchurl {
2014-10-07 21:15:56 +02:00
url = "http://lftp.yar.ru/ftp/${name}.tar.bz2";
sha256 = "11885mj0xk5b1mnvf63s33874x7fcg87bszsyalxwsab4yfplam3";
};
patches = [ ./no-gets.patch ];
buildInputs = [ gnutls pkgconfig readline zlib ];
2014-04-13 22:23:23 +02:00
meta = with stdenv.lib; {
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 ];
};
}