1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/lftp/default.nix
Bjørn Forsman 3ad289dff9 lftp: remove unused 'xz' expression argument
xz used to be in buildInputs but was removed in commit
d4d7931a62 (Cleanup: remove obsolete
references to ‘xz’, which is in stdenv).
2014-06-23 16:41:11 +02:00

23 lines
603 B
Nix

{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }:
stdenv.mkDerivation rec {
name = "lftp-4.5.2";
src = fetchurl {
url = "http://lftp.yar.ru/ftp/${name}.tar.gz";
sha256 = "106llhq9lgvdxlf4r1p94r66fcy5ywfdfvins4dfn9irg0k5gzyv";
};
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 ];
};
}