summary refs log tree commit diff
path: root/pkgs/applications/networking/yafc/default.nix
blob: 45bb5518f9c1f4427774c4cde00b3f407bce667c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, readline, libssh, intltool, libbsd, pkgconfig}:

stdenv.mkDerivation rec {
  name = "yafc-1.3.6";
  src = fetchurl {
    url = "http://www.yafc-ftp.com/downloads/${name}.tar.xz";
    sha256 = "0wvrljihliggysfnzczc0s74i3ab2c1kzjjs99iqk98nxmb2b8v3";
  };

  buildInputs = [ readline libssh intltool libbsd pkgconfig ];

  meta = {
    description = "ftp/sftp client with readline, autocompletion and bookmarks";
    homepage = http://www.yafc-ftp.com;
    maintainers = [ stdenv.lib.maintainers.page ];
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}