diff --git a/pkgs/by-name/ad/adjustor/package.nix b/pkgs/by-name/ad/adjustor/package.nix deleted file mode 100644 index 74bb9d0916f4..000000000000 --- a/pkgs/by-name/ad/adjustor/package.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ - fetchFromGitHub, - lib, - python3Packages, - # Dependencies - kmod, - util-linux, -}: -python3Packages.buildPythonPackage rec { - pname = "adjustor"; - version = "3.11.8"; - pyproject = true; - - src = fetchFromGitHub { - owner = "hhd-dev"; - repo = "adjustor"; - tag = "v${version}"; - hash = "sha256-BS0zV8nan61fTUs3v6nmGBuqPEDjATxBG792ZrrreAI="; - }; - - # This package relies on several programs expected to be on the user's PATH. - # We take a more reproducible approach by patching the absolute path to each of these required - # binaries. - postPatch = '' - substituteInPlace src/adjustor/core/acpi.py \ - --replace-fail '"modprobe"' '"${lib.getExe' kmod "modprobe"}"' - substituteInPlace src/adjustor/fuse/utils.py \ - --replace-fail 'f"mount' 'f"${lib.getExe' util-linux "mount"}' - ''; - - build-system = with python3Packages; [ - setuptools - ]; - - dependencies = with python3Packages; [ - rich - pyroute2 - fuse - pygobject3 - dbus-python - kmod - ]; - - # This package doesn't have upstream tests. - doCheck = false; - - meta = { - homepage = "https://github.com/hhd-dev/adjustor/"; - description = "Adjustor TDP plugin for Handheld Daemon"; - platforms = lib.platforms.linux; - license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.toast ]; - mainProgram = "hhd"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3c90c8ed4031..8b4a96795589 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -269,6 +269,7 @@ mapAliases { a4term = throw "'a4term' has been renamed to/replaced by 'a4'"; # Converted to throw 2025-10-27 abseil-cpp_202301 = throw "abseil-cpp_202301 has been removed as it was unused in tree"; # Added 2025-08-09 abseil-cpp_202501 = throw "abseil-cpp_202501 has been removed as it was unused in tree"; # Added 2025-09-15 + adjustor = throw "adjustor has been removed as it part of the 'handheld-daemon' package"; # Added 2025-11-16 adminer-pematon = throw "'adminer-pematon' has been renamed to/replaced by 'adminneo'"; # Converted to throw 2025-10-27 adminerneo = throw "'adminerneo' has been renamed to/replaced by 'adminneo'"; # Converted to throw 2025-10-27 adobe-reader = throw "'adobe-reader' has been removed, as it was broken, outdated and insecure"; # Added 2025-05-31