summary refs log blame commit diff
path: root/pkgs/os-specific/linux/afuse/default.nix
blob: 2ecb21d2b5beaf14b75e5c2ffafcc7dd2ff34c5c (plain) (tree)























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