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

24 lines
639 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
stdenv.mkDerivation rec {
2015-06-18 21:39:39 -07:00
name = "lftp-4.6.3a";
src = fetchurl {
2014-11-15 17:30:03 -08:00
urls = [
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
];
2015-06-18 21:39:39 -07:00
sha256 = "0846p1z5v997lxaqanj8n1qkv470s8nlhs420kiby67k4j2zl576";
};
buildInputs = [ gnutls pkgconfig readline zlib ];
2014-04-13 13:23:23 -07:00
meta = with stdenv.lib; {
description = "A file transfer program supporting a number of network protocols";
2014-04-13 13:23:23 -07:00
homepage = http://lftp.yar.ru/;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}