diff --git a/pkgs/by-name/sv/svnfs/package.nix b/pkgs/by-name/sv/svnfs/package.nix deleted file mode 100644 index a6a9e5e148ea..000000000000 --- a/pkgs/by-name/sv/svnfs/package.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - autoreconfHook, - subversion, - fuse, - apr, - perl, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "svnfs"; - version = "0.4"; - - src = fetchurl { - url = "http://www.jmadden.eu/wp-content/uploads/svnfs/svnfs-${finalAttrs.version}.tgz"; - sha256 = "1lrzjr0812lrnkkwk60bws9k1hq2iibphm0nhqyv26axdsygkfky"; - }; - - nativeBuildInputs = [ autoreconfHook ]; - buildInputs = [ - subversion - fuse - apr - perl - ]; - - # autoconf's AC_CHECK_HEADERS and AC_CHECK_LIBS fail to detect libfuse on - # Darwin if FUSE_USE_VERSION isn't set at configure time. - # - # NOTE: Make sure the value of FUSE_USE_VERSION specified here matches the - # actual version used in the source code: - # - # $ tar xf "$(nix-build -A svnfs.src)" - # $ grep -R FUSE_USE_VERSION - configureFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "CFLAGS=-DFUSE_USE_VERSION=25" ]; - - # why is this required? - preConfigure = '' - export LD_LIBRARY_PATH=${subversion.out}/lib - ''; - - env = { - # -fcommon: workaround build failure on -fno-common toolchains like upstream - # gcc-10. Otherwise build fails as: - # ld: svnclient.o:/build/svnfs-0.4/src/svnfs.h:40: multiple definition of - # `dirbuf'; svnfs.o:/build/svnfs-0.4/src/svnfs.h:40: first defined here - NIX_CFLAGS_COMPILE = toString [ - "-I ${subversion.dev}/include/subversion-1" - "-fcommon" - ]; - NIX_LDFLAGS = toString [ - "-lsvn_client-1" - "-lsvn_subr-1" - ]; - }; - - meta = { - description = "FUSE filesystem for accessing Subversion repositories"; - homepage = "https://www.jmadden.eu/index.php/svnfs/"; - license = lib.licenses.gpl2Only; - maintainers = [ ]; - platforms = lib.platforms.unix; - mainProgram = "svnfs"; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index bc8ede1d87e7..edd35552959c 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -2057,6 +2057,7 @@ mapAliases { superTux = warnAlias "'superTux' has been renamed to 'supertux'" supertux; # Added 2026-02-12 superTuxKart = warnAlias "'superTuxKart' has been renamed to 'supertuxkart'" supertuxkart; # Added 2026-02-12 surge-XT = warnAlias "'surge-XT' has been renamed to 'surge-xt'" surge-xt; # Added 2026-02-12 + svnfs = throw "'svnfs' has been removed as it was unmaintained upstream"; # Added 2026-06-01 svox = warnAlias "'svox' has been renamed to/replaced by 'picotts'" picotts; # Added 2026-03-04 svt-av1-psy = warnAlias "'svt-av1-psy' has been replaced by 'svt-av1-psyex'" svt-av1-psyex; # Added 2026-01-10 swagger-cli = throw "'swagger-cli' has been removed as it is broken and unmaintained. Upstream suggests using 'redocly' instead"; # Added 2026-04-23