wdfs: drop (#528337)
This commit is contained in:
@@ -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";
|
||||
};
|
||||
})
|
||||
@@ -2275,6 +2275,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
|
||||
|
||||
Reference in New Issue
Block a user