adding afuse. A userspace automounter
svn path=/nixpkgs/trunk/; revision=19063
This commit is contained in:
parent
cb130281ba
commit
8058166fe0
24
pkgs/os-specific/linux/afuse/default.nix
Normal file
24
pkgs/os-specific/linux/afuse/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "afuse-0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/afuse/0.2/afuse-0.2.tar.gz;
|
||||
sha256 = "1lj2jdks0bgwxbjqp5a9f7qdry19kar6pg7dh1ml98gapx9siylj";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig fuse];
|
||||
|
||||
meta = {
|
||||
description = "automounting in userspace. Allows easy access to ssh-agent etc";
|
||||
longDesc = ''
|
||||
Example: (automunt using sshfs by accessing ~/sshfs/[user@]domain
|
||||
afuse -o mount_template="sshfs %r:/ %m" -o unmount_template="fusermount -u -z %m" ~/sshfs/
|
||||
'';
|
||||
homepage = http://sourceforge.net/projects/afuse;
|
||||
license = "GPL-v2";
|
||||
maintainers = [args.lib.maintainers.marcweber];
|
||||
platforms = args.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -5157,6 +5157,10 @@ let
|
||||
|
||||
### OS-SPECIFIC
|
||||
|
||||
afuse = import ../os-specific/linux/afuse {
|
||||
inherit fetchurl stdenv lib pkgconfig fuse;
|
||||
};
|
||||
|
||||
autofs5 = import ../os-specific/linux/autofs/autofs-v5.nix {
|
||||
inherit sourceFromHead fetchurl stdenv flex bison kernelHeaders;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user