Adding yafc-1.1.1
svn path=/nixpkgs/trunk/; revision=13846
This commit is contained in:
parent
fb1fd1115f
commit
c844c68142
20
pkgs/applications/networking/yafc/default.nix
Normal file
20
pkgs/applications/networking/yafc/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -8941,6 +8941,10 @@ let
|
|||||||
inherit (xlibs) libX11;
|
inherit (xlibs) libX11;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
yafc = import ../applications/networking/yafc {
|
||||||
|
inherit fetchurl stdenv readline openssh;
|
||||||
|
};
|
||||||
|
|
||||||
myEnvFun = import ../misc/my-env {
|
myEnvFun = import ../misc/my-env {
|
||||||
inherit substituteAll pkgs;
|
inherit substituteAll pkgs;
|
||||||
inherit (stdenv) mkDerivation;
|
inherit (stdenv) mkDerivation;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user