From fea46bdb0affbf9aedd507a015441be6fabeda0e Mon Sep 17 00:00:00 2001 From: kashw2 Date: Sat, 8 Nov 2025 16:12:11 +1000 Subject: [PATCH] stacer: drop --- pkgs/tools/system/stacer/default.nix | 54 ---------------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 1 insertion(+), 56 deletions(-) delete mode 100644 pkgs/tools/system/stacer/default.nix diff --git a/pkgs/tools/system/stacer/default.nix b/pkgs/tools/system/stacer/default.nix deleted file mode 100644 index 05303b472ac9..000000000000 --- a/pkgs/tools/system/stacer/default.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - cmake, - qtcharts, - qttools, - wrapQtAppsHook, -}: - -stdenv.mkDerivation rec { - pname = "stacer"; - version = "1.1.0"; - - src = fetchFromGitHub { - owner = "oguzhaninan"; - repo = pname; - rev = "v${version}"; - sha256 = "0qndzzkbq6abapvwq202kva8j619jdn9977sbqmmfs9zkjz4mbsd"; - }; - - postPatch = '' - substituteInPlace stacer/Managers/app_manager.cpp \ - --replace 'qApp->applicationDirPath() + "/translations"' \ - 'QStandardPaths::locate(QStandardPaths::AppDataLocation, "translations", QStandardPaths::LocateDirectory)' - ''; - - buildInputs = [ - qtcharts - qttools - ]; - - nativeBuildInputs = [ - cmake - wrapQtAppsHook - ]; - - preConfigure = '' - lrelease stacer/stacer.pro - ''; - - postInstall = '' - install -Dm644 ../translations/*.qm -t $out/share/stacer/translations - ''; - - meta = with lib; { - description = "Linux System Optimizer and Monitoring"; - homepage = "https://github.com/oguzhaninan/stacer"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ dit7ya ]; - platforms = platforms.linux; - mainProgram = "stacer"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 7b648852e189..1fd200bc81c2 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1426,6 +1426,7 @@ mapAliases { springLobby = throw "springLobby has been removed, as it had been broken since 2023"; # Added 2025-09-16 sqlbag = throw "sqlbag has been removed because it has been marked as broken since May 2024."; # Added 2025-10-11 ssm-agent = throw "'ssm-agent' has been renamed to/replaced by 'amazon-ssm-agent'"; # Converted to throw 2025-10-27 + stacer = throw "'stacer' has been removed because it was abandoned upstream and relied upon vulnerable software"; # Added 2025-11-08 starpls-bin = throw "'starpls-bin' has been renamed to/replaced by 'starpls'"; # Converted to throw 2025-10-27 station = throw "station has been removed from nixpkgs, as there were no committers among its maintainers to unblock security issues"; # added 2025-06-16 steam-run-native = throw "'steam-run-native' has been renamed to/replaced by 'steam-run'"; # Converted to throw 2025-10-27 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8bcd7a5976d6..d85806a7e511 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3982,8 +3982,6 @@ with pkgs; openssl = openssl.override { withZlib = true; }; }; - stacer = libsForQt5.callPackage ../tools/system/stacer { }; - staticjinja = with python3.pkgs; toPythonApplication staticjinja; stoken = callPackage ../tools/security/stoken (config.stoken or { });