summary refs log tree commit diff
path: root/pkgs/tools/filesystems/wdfs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
commitc726012afe1dbd13da7ab15381e3de2867bc8af5 (patch)
tree123888653c98ee60761109c9b3c59f706695b064 /pkgs/tools/filesystems/wdfs
parent064aae6461971ed76ff4ed5bc8e043840592c04a (diff)
* Refactoring: move most filesystem utilities / FUSE filesystems to
  tools/filesystems.  Previously they were all over the place.

svn path=/nixpkgs/trunk/; revision=18809
Diffstat (limited to 'pkgs/tools/filesystems/wdfs')
-rw-r--r--pkgs/tools/filesystems/wdfs/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/wdfs/default.nix b/pkgs/tools/filesystems/wdfs/default.nix
new file mode 100644
index 0000000000000..8bd7101d8f2ad
--- /dev/null
+++ b/pkgs/tools/filesystems/wdfs/default.nix
@@ -0,0 +1,15 @@
+{stdenv, fetchurl, glib, neon, fuse, pkgconfig}:
+
+stdenv.mkDerivation rec
+{
+  name = "wdfs-fuse-1.4.2";
+  src = fetchurl {
+    url = "http://noedler.de/projekte/wdfs/${name}.tar.gz";
+    sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
+  };
+  buildInputs = [fuse glib neon pkgconfig];
+  meta = {
+    homepage = "http://noedler.de/projekte/wdfs/";
+    description = "wdfs a user-space filesystem that allows to mount a webdav share";
+  };
+}