mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
23 lines
604 B
Nix
23 lines
604 B
Nix
{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lftp-4.5.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://lftp.yar.ru/ftp/${name}.tar.bz2";
|
|
sha256 = "11885mj0xk5b1mnvf63s33874x7fcg87bszsyalxwsab4yfplam3";
|
|
};
|
|
|
|
patches = [ ./no-gets.patch ];
|
|
|
|
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 ];
|
|
};
|
|
}
|