summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-12-21 11:09:23 +0000
committerLudovic Courtès <ludo@gnu.org>2009-12-21 11:09:23 +0000
commit310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be (patch)
tree827afc4276b34f3bba9f5fcef10244eab665ea36 /pkgs/os-specific
parent8a0a76f5e6e7223af269cb3543205e115ac993bb (diff)
parent4fc8cd8d356559a5d940fbdec735906b2d1a02d1 (diff)
downloadnixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar.gz
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar.bz2
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar.lz
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar.xz
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.tar.zst
nixpkgs-310d6e4bbf7e4ac2ae9494a1fa59cfded056f3be.zip
Update from trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19066
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/afuse/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/afuse/default.nix b/pkgs/os-specific/linux/afuse/default.nix
new file mode 100644
index 00000000000..2ecb21d2b5b
--- /dev/null
+++ b/pkgs/os-specific/linux/afuse/default.nix
@@ -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;
+  };
+}
+