From d4936a4fdec68451f0a45830d7908810c66ea464 Mon Sep 17 00:00:00 2001 From: Harinn Date: Fri, 8 May 2026 23:33:14 +0700 Subject: [PATCH] hubicfuse: drop --- pkgs/by-name/hu/hubicfuse/package.nix | 63 --------------------------- pkgs/top-level/aliases.nix | 1 + 2 files changed, 1 insertion(+), 63 deletions(-) delete mode 100644 pkgs/by-name/hu/hubicfuse/package.nix diff --git a/pkgs/by-name/hu/hubicfuse/package.nix b/pkgs/by-name/hu/hubicfuse/package.nix deleted file mode 100644 index acdd7fe3f5d4..000000000000 --- a/pkgs/by-name/hu/hubicfuse/package.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - fetchpatch, - pkg-config, - curl, - openssl, - fuse, - libxml2, - json_c, - file, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "hubicfuse"; - version = "3.0.1"; - - src = fetchFromGitHub { - owner = "TurboGit"; - repo = "hubicfuse"; - rev = "v${finalAttrs.version}"; - sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr"; - }; - - patches = [ - # Fix Darwin build - # https://github.com/TurboGit/hubicfuse/pull/159 - (fetchpatch { - url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch"; - sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl"; - }) - # UPstream fix for build failure on -fno-common toolchains - (fetchpatch { - name = "fno-common.patch"; - url = "https://github.com/TurboGit/hubicfuse/commit/34a6c3e57467b5f7e9befe2171bf4292893c5a18.patch"; - sha256 = "0k1jz2h8sdhmi0srx0adbyrcrm57j4annj84yw6hdrly5hsf7bzc"; - }) - ]; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - curl - openssl - fuse - libxml2 - json_c - file - ]; - postInstall = '' - install hubic_token $out/bin - mkdir -p $out/sbin - ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse - ''; - - meta = { - homepage = "https://github.com/TurboGit/hubicfuse"; - description = "FUSE-based filesystem to access hubic cloud storage"; - platforms = lib.platforms.unix; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.jpierre03 ]; - }; -}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index b9dcf82ab2cf..c316b07ba211 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -946,6 +946,7 @@ mapAliases { 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 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 hydraAntLogger = warnAlias "'hydraAntLogger' has been renamed to 'hydra-ant-logger'" hydra-ant-logger; # Added 2026-02-08 hyprfreeze = warnAlias "'hyprfreeze' has been renamed to 'wl-freeze'" wl-freeze; # Added 2026-04-10