nixpkgs-suyu/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-19 06:39:39 +02:00
name = "lftp-4.6.3a";
src = fetchurl {
2014-11-16 02:30:03 +01:00
urls = [
"http://lftp.yar.ru/ftp/${name}.tar.bz2"
"http://lftp.yar.ru/ftp/old/${name}.tar.bz2"
];
2015-06-19 06:39:39 +02:00
sha256 = "0846p1z5v997lxaqanj8n1qkv470s8nlhs420kiby67k4j2zl576";
};
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 ];
};
}