2012-07-17 21:17:01 +01:00
|
|
|
{stdenv, fetchurl, readline, libssh, intltool}:
|
2009-01-25 14:31:51 +00:00
|
|
|
|
2012-07-17 21:17:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-06 16:31:40 +01:00
|
|
|
name = "yafc-1.2.3";
|
2009-01-25 14:31:51 +00:00
|
|
|
src = fetchurl {
|
2012-07-22 09:24:15 +01:00
|
|
|
url = "https://github.com/downloads/sebastinas/yafc/${name}.tar.xz";
|
2012-09-06 16:31:40 +01:00
|
|
|
sha256 = "11h5r9ragfpil338kq981wxnifacflqfwgydhmy00b3fbdlnxzsi";
|
2009-01-25 14:31:51 +00:00
|
|
|
};
|
|
|
|
|
2012-07-17 21:17:01 +01:00
|
|
|
buildInputs = [ readline libssh intltool ];
|
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 ];
|
2011-10-20 12:17:24 +01:00
|
|
|
license = "GPLv2+";
|
2009-01-25 14:31:51 +00:00
|
|
|
};
|
|
|
|
}
|