mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Added lftp ftp client.
svn path=/nixpkgs/trunk/; revision=9041
This commit is contained in:
parent
d59c7b1cd9
commit
ce5b2cfa14
11
pkgs/tools/networking/lftp/default.nix
Normal file
11
pkgs/tools/networking/lftp/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, readline}:
|
||||
stdenv.mkDerivation {
|
||||
name = "lftp-3.5.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-3.5.11.tar.bz2;
|
||||
md5 = "a1691cc0b6f0045a61e9f3d4f668fe13";
|
||||
};
|
||||
|
||||
buildInputs = [readline ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user