* Added sshfs-fuse, a program for mounting remote filesystems via
ssh. No remote support required, everything is done via ssh's builtin sftp protocol. svn path=/nixpkgs/trunk/; revision=7543
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
{stdenv, fetchurl, pkgconfig, glib, fuse}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "sshfs-fuse-1.7";
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://mesh.dl.sourceforge.net/sourceforge/fuse/sshfs-fuse-1.7.tar.gz;
|
||||||
|
md5 = "e91a2fed1da952a375798408dc6e41a0";
|
||||||
|
};
|
||||||
|
buildInputs = [pkgconfig glib fuse];
|
||||||
|
}
|
||||||
@@ -475,6 +475,11 @@ rec {
|
|||||||
inherit fetchurl stdenv ncurses;
|
inherit fetchurl stdenv ncurses;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sshfsFuse = import ../tools/networking/sshfs-fuse {
|
||||||
|
inherit fetchurl stdenv pkgconfig fuse;
|
||||||
|
inherit (gtkLibs) glib;
|
||||||
|
};
|
||||||
|
|
||||||
tightvnc = import ../tools/admin/tightvnc {
|
tightvnc = import ../tools/admin/tightvnc {
|
||||||
inherit fetchurl stdenv x11 zlib libjpeg;
|
inherit fetchurl stdenv x11 zlib libjpeg;
|
||||||
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
||||||
|
|||||||
Reference in New Issue
Block a user