nixpkgs/pkgs/os-specific/linux/afuse/default.nix
Marc Weber 8058166fe0 adding afuse. A userspace automounter
svn path=/nixpkgs/trunk/; revision=19063
2009-12-21 08:55:27 +00:00

25 lines
721 B
Nix

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;
};
}