yafc: update to 1.2.0

The project has been retaken and this is the latest tarball available.
This commit is contained in:
Carles Pagès 2012-07-17 22:17:01 +02:00
parent 7e2979b56f
commit bae6ad5914

View file

@ -1,21 +1,19 @@
{stdenv, fetchurl, readline, openssh}:
{stdenv, fetchurl, readline, libssh, intltool}:
stdenv.mkDerivation {
name = "yafc-1.1.1";
stdenv.mkDerivation rec {
name = "yafc";
version = "1.2.0";
src = fetchurl {
url = mirror://sourceforge/yafc/yafc-1.1.1.tar.bz2;
sha256 = "ab72b2ed89fb75dbe8ebd119458cf513392225f367cccfad881e9780aefcd7e6";
url = "https://github.com/downloads/sebastinas/yafc/${name}-${version}.tar.xz";
sha256 = "0h5cbvvfkigvzfqqzvgqpn8m0ilyng3rgyh85c0mi48klzv8kb58";
};
buildInputs = [readline openssh];
patchPhase = "
sed -e 's@/usr/bin/ssh@${openssh}/bin/ssh@' -i src/main.c
";
buildInputs = [ readline libssh intltool ];
meta = {
description = "ftp/sftp client with readline, autocompletion and bookmarks";
homepage = http://yafc.sourceforge.net;
homepage = http://www.yafc-ftp.com;
maintainers = [ "Carles Pagès <page@cubata.homelinux.net>" ];
license = "GPLv2+";
};
}