ksmoothdock: drop

This commit is contained in:
K900
2026-04-26 15:52:00 +03:00
parent 43a7b570f6
commit 937c2412f2
3 changed files with 1 additions and 50 deletions
@@ -1,49 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
extra-cmake-modules,
wrapQtAppsHook,
kactivities,
qtbase,
}:
stdenv.mkDerivation rec {
pname = "KSmoothDock";
version = "6.3";
src = fetchFromGitHub {
owner = "dangvd";
repo = "ksmoothdock";
rev = "v${version}";
sha256 = "sha256-hO7xgjFMFrEhQs3oc2peFTjSVEDsl7Ma/TeVybEZMEk=";
};
# Upstream seems dead and there are new deprecation warnings in KF5.100
# Remember, kids: friends don't let friends build with -Werror
postPatch = ''
substituteInPlace src/CMakeLists.txt --replace "-Werror" ""
'';
nativeBuildInputs = [
cmake
extra-cmake-modules
wrapQtAppsHook
];
buildInputs = [
kactivities
qtbase
];
cmakeDir = "../src";
meta = {
description = "Cool desktop panel for KDE Plasma 5";
mainProgram = "ksmoothdock";
license = lib.licenses.mit;
homepage = "https://dangvd.github.io/ksmoothdock/";
platforms = lib.platforms.linux;
};
}
+1
View File
@@ -1040,6 +1040,7 @@ mapAliases {
krb5Full = throw "'krb5Full' has been renamed to/replaced by 'krb5'"; # Converted to throw 2025-10-27
krunner-pass = throw "'krunner-pass' has been removed, as it only works on Plasma 5"; # Added 2025-08-30
krunner-translator = throw "'krunner-translator' has been removed, as it only works on Plasma 5"; # Added 2025-08-30
ksmoothdock = throw "'ksmoothdock' has been removed, as Plasma 5 has reached end of life."; # Added 2026-05-01
kube3d = throw "'kube3d' has been renamed to/replaced by 'k3d'"; # Converted to throw 2025-10-27
kubei = throw "'kubei' has been renamed to/replaced by 'kubeclarity'"; # Converted to throw 2025-10-27
kubo-migrator-all-fs-repo-migrations = throw "'kubo-migrator-all-fs-repo-migrations' has been renamed to/replaced by 'kubo-fs-repo-migrations'"; # Converted to throw 2025-10-27
-1
View File
@@ -2635,7 +2635,6 @@ with pkgs;
kwalletcli = libsForQt5.callPackage ../tools/security/kwalletcli { };
ksmoothdock = libsForQt5.callPackage ../applications/misc/ksmoothdock { };
limine-full = limine.override { enableAll = true; };