nixpkgs/pkgs/applications/networking/yafc/default.nix

19 lines
547 B
Nix
Raw Normal View History

2014-02-23 21:22:29 +00:00
{stdenv, fetchurl, readline, libssh, intltool, libbsd}:
stdenv.mkDerivation rec {
2014-02-23 21:22:29 +00:00
name = "yafc-1.3.2";
src = fetchurl {
2014-02-23 21:22:29 +00:00
url = "http://www.yafc-ftp.com/upload/${name}.tar.xz";
sha256 = "0rrhik00xynxg5s3ffqlyynvy8ssv8zfaixkpb77baxa274gnbd7";
};
2014-02-23 21:22:29 +00:00
buildInputs = [ readline libssh intltool libbsd ];
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;
};
}