* 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:
parent
2ecbdbe5eb
commit
045cdc51e8
10
pkgs/tools/networking/sshfs-fuse/default.nix
Normal file
10
pkgs/tools/networking/sshfs-fuse/default.nix
Normal file
@ -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;
|
||||
};
|
||||
|
||||
sshfsFuse = import ../tools/networking/sshfs-fuse {
|
||||
inherit fetchurl stdenv pkgconfig fuse;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
tightvnc = import ../tools/admin/tightvnc {
|
||||
inherit fetchurl stdenv x11 zlib libjpeg;
|
||||
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user