2012-07-17 22:17:01 +02:00
|
|
|
{stdenv, fetchurl, readline, libssh, intltool}:
|
2009-01-25 15:31:51 +01:00
|
|
|
|
2012-07-17 22:17:01 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-06 17:31:40 +02:00
|
|
|
name = "yafc-1.2.3";
|
2009-01-25 15:31:51 +01:00
|
|
|
src = fetchurl {
|
2012-07-22 10:24:15 +02:00
|
|
|
url = "https://github.com/downloads/sebastinas/yafc/${name}.tar.xz";
|
2012-09-06 17:31:40 +02:00
|
|
|
sha256 = "11h5r9ragfpil338kq981wxnifacflqfwgydhmy00b3fbdlnxzsi";
|
2009-01-25 15:31:51 +01:00
|
|
|
};
|
|
|
|
|
2012-07-17 22:17:01 +02:00
|
|
|
buildInputs = [ readline libssh intltool ];
|
2009-01-25 15:31:51 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ftp/sftp client with readline, autocompletion and bookmarks";
|
2012-07-17 22:17:01 +02:00
|
|
|
homepage = http://www.yafc-ftp.com;
|
2012-07-17 23:31:39 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.page ];
|
2011-10-20 13:17:24 +02:00
|
|
|
license = "GPLv2+";
|
2009-01-25 15:31:51 +01:00
|
|
|
};
|
|
|
|
}
|