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

stdenv.mkDerivation rec {
  name = "yafc-1.2.3";
  src = fetchurl {
    url = "https://github.com/downloads/sebastinas/yafc/${name}.tar.xz";
    sha256 = "11h5r9ragfpil338kq981wxnifacflqfwgydhmy00b3fbdlnxzsi";
  };

  buildInputs = [ readline libssh intltool ];

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