about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/wdfs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/filesystems/wdfs/default.nix')
-rw-r--r--pkgs/tools/filesystems/wdfs/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/tools/filesystems/wdfs/default.nix b/pkgs/tools/filesystems/wdfs/default.nix
deleted file mode 100644
index 3f8897c091bc..000000000000
--- a/pkgs/tools/filesystems/wdfs/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{lib, stdenv, fetchurl, glib, neon, fuse, autoreconfHook, pkg-config}:
-
-stdenv.mkDerivation rec {
-  pname = "wdfs-fuse";
-  version = "1.4.2";
-
-  src = fetchurl {
-    url = "http://noedler.de/projekte/wdfs/wdfs-${version}.tar.gz";
-    sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5";
-  };
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [fuse glib neon];
-
-  postPatch = lib.optionalString stdenv.isDarwin ''
-    # Fix the build on macOS with macFUSE installed. Needs autoreconfHook to
-    # take effect.
-    substituteInPlace configure.ac --replace \
-      'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH' ""
-  '';
-
-  meta = with lib; {
-    homepage = "http://noedler.de/projekte/wdfs/";
-    license = licenses.gpl2Plus;
-    description = "User-space filesystem that allows to mount a webdav share";
-    platforms = platforms.unix;
-    mainProgram = "wdfs";
-  };
-}