diff --git a/pkgs/by-name/ht/httpfs2/package.nix b/pkgs/by-name/ht/httpfs2/package.nix deleted file mode 100644 index 68c050793a5c..000000000000 --- a/pkgs/by-name/ht/httpfs2/package.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ - fetchurl, - lib, - stdenv, - pkg-config, - fuse, - openssl, - asciidoc, - docbook_xml_dtd_45, - docbook_xsl, - libxml2, - libxslt, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "httpfs2"; - version = "0.1.5"; - - src = fetchurl { - url = "mirror://sourceforge/httpfs/httpfs2/httpfs2-${finalAttrs.version}.tar.gz"; - sha256 = "1h8ggvhw30n2r6w11n1s458ypggdqx6ldwd61ma4yd7binrlpjq1"; - }; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - fuse - openssl - asciidoc - docbook_xml_dtd_45 - docbook_xsl - libxml2 - libxslt - ]; - - installPhase = '' - mkdir -p "$out/bin" - cp -v httpfs2 "$out/bin" - - mkdir -p "$out/share/man/man1" - cp -v *.1 "$out/share/man/man1" - ''; - - meta = { - description = "FUSE-based HTTP filesystem for Linux"; - mainProgram = "httpfs2"; - - homepage = "https://httpfs.sourceforge.net/"; - - license = lib.licenses.gpl2Plus; - - platforms = lib.platforms.unix; - maintainers = [ ]; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 33291f2d7943..2d5b5d4f7140 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -964,6 +964,7 @@ mapAliases { hspellDicts = throw "'hspellDicts' has been removed due to being broken for more than a year; see RFC 180"; # Added 2026-02-05 http-prompt = throw "'http-prompt' has been removed as it was broken and unmaintained upstream"; # Added 2025-11-26 httperf = throw "'httperf' has been removed as it was unmaintained and broken"; # Added 2026-05-04 + httpfs2 = throw "'httpfs2' has been removed as it was unmaintained upstream"; # Added 2026-05-31 httplz = throw "'httplz' has been removed as it was unmaintained upstream"; # Added 2026-04-25 hubicfuse = throw "'hubicfuse' has been removed as the hubic service was discontinued and the project is unmaintained upstream"; # Added 2026-05-08 hydra_unstable = throw "'hydra_unstable' has been renamed to/replaced by 'hydra'"; # Converted to throw 2025-10-27