From a15b2651a05175215cb0b0eb5b4a8b42afd6a150 Mon Sep 17 00:00:00 2001 From: Jack Rosenberg Date: Fri, 5 Jun 2026 12:18:03 +0200 Subject: [PATCH] wdfs: drop --- pkgs/by-name/wd/wdfs/package.nix | 49 -------------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 49 deletions(-) delete mode 100644 pkgs/by-name/wd/wdfs/package.nix diff --git a/pkgs/by-name/wd/wdfs/package.nix b/pkgs/by-name/wd/wdfs/package.nix deleted file mode 100644 index 073acd4ac0b2..000000000000 --- a/pkgs/by-name/wd/wdfs/package.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - glib, - neon, - fuse, - autoreconfHook, - pkg-config, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "wdfs-fuse"; - version = "1.4.2"; - - src = fetchurl { - url = "https://noedler.de/projekte/wdfs/wdfs-${finalAttrs.version}.tar.gz"; - sha256 = "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5"; - }; - nativeBuildInputs = [ - autoreconfHook - pkg-config - ]; - buildInputs = [ - fuse - glib - neon - ]; - - # autoconf 2.72 sets the C standard to C23 but not all compilers are ready for that - configureFlags = [ - "CFLAGS=-std=gnu17" - ]; - - postPatch = lib.optionalString stdenv.hostPlatform.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 = { - homepage = "http://noedler.de/projekte/wdfs/"; - license = lib.licenses.gpl2Plus; - description = "User-space filesystem that allows to mount a webdav share"; - platforms = lib.platforms.unix; - mainProgram = "wdfs"; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 461179a42573..5aa5e3b6ac54 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -2263,6 +2263,7 @@ mapAliases { wayv = throw "'wayv' has been removed as it is broken and unmaintained upstream"; # Added 2026-05-05 wayvr-dashboard = throw "'wayvr-dashboard' and 'wlx-overlay-s' have been merged into a single application. Please switch to 'wayvr'"; # Added 2026-01-09 wcurl = throw "'wcurl' has been removed due to being bundled with 'curl'"; # Added 2025-07-04 + wdfs = throw "'wdfs' has been removed as it is unmaintained, and depends on fuse2. Consider using 'davfs2' instead"; # Added 2026-05-05 wdomirror = throw "'wdomirror' has been removed as it is unmaintained upstream, Consider using 'wl-mirror' instead"; # Added 2025-09-04 webfontkitgenerator = webfont-bundler; # Added 2025-07-27 webkitgtk = throw "'webkitgtk' attribute has been removed from nixpkgs, use attribute with ABI version set explicitly"; # Added 2025-06-11