2014-02-23 21:22:29 +00:00
|
|
|
{stdenv, fetchurl, readline, libssh, intltool, libbsd}:
|
2009-01-25 14:31:51 +00:00
|
|
|
|
2012-07-17 21:17:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-23 21:22:29 +00:00
|
|
|
name = "yafc-1.3.2";
|
2009-01-25 14:31:51 +00:00
|
|
|
src = fetchurl {
|
2014-02-23 21:22:29 +00:00
|
|
|
url = "http://www.yafc-ftp.com/upload/${name}.tar.xz";
|
|
|
|
sha256 = "0rrhik00xynxg5s3ffqlyynvy8ssv8zfaixkpb77baxa274gnbd7";
|
2009-01-25 14:31:51 +00:00
|
|
|
};
|
|
|
|
|
2014-02-23 21:22:29 +00:00
|
|
|
buildInputs = [ readline libssh intltool libbsd ];
|
2009-01-25 14:31:51 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ftp/sftp client with readline, autocompletion and bookmarks";
|
2012-07-17 21:17:01 +01:00
|
|
|
homepage = http://www.yafc-ftp.com;
|
2012-07-17 22:31:39 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.page ];
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-01-25 14:31:51 +00:00
|
|
|
};
|
|
|
|
}
|