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

19 lines
526 B
Nix
Raw Normal View History

{stdenv, fetchurl, readline, libssh, intltool}:
stdenv.mkDerivation rec {
2012-09-06 15:31:40 +00:00
name = "yafc-1.2.3";
src = fetchurl {
url = "https://github.com/downloads/sebastinas/yafc/${name}.tar.xz";
2012-09-06 15:31:40 +00:00
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+";
};
}