Adding yafc-1.1.1

svn path=/nixpkgs/trunk/; revision=13846
This commit is contained in:
Lluís Batlle i Rossell 2009-01-25 14:31:51 +00:00
parent fb1fd1115f
commit c844c68142
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{stdenv, fetchurl, readline, openssh}:
stdenv.mkDerivation {
name = "yafc-1.1.1";
src = fetchurl {
url = mirror://sourceforge/yafc/yafc-1.1.1.tar.bz2;
sha256 = "ab72b2ed89fb75dbe8ebd119458cf513392225f367cccfad881e9780aefcd7e6";
};
buildInputs = [readline openssh];
patchPhase = "
sed -e 's@/usr/bin/ssh@${openssh}/bin/ssh@' -i src/main.c
";
meta = {
description = "ftp/sftp client with readline, autocompletion and bookmarks";
homepage = http://yafc.sourceforge.net;
};
}

View file

@ -8941,6 +8941,10 @@ let
inherit (xlibs) libX11;
};
yafc = import ../applications/networking/yafc {
inherit fetchurl stdenv readline openssh;
};
myEnvFun = import ../misc/my-env {
inherit substituteAll pkgs;
inherit (stdenv) mkDerivation;