mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
kf5/plasma-framework: backport patch to fix thumbnails in task manager
This commit is contained in:
parent
2bf8d8c016
commit
d6b20ea2cf
1 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
mkDerivation,
|
||||
mkDerivation, fetchpatch,
|
||||
extra-cmake-modules, kdoctools,
|
||||
kactivities, karchive, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
|
||||
kdeclarative, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio,
|
||||
|
@ -9,6 +9,14 @@
|
|||
|
||||
mkDerivation {
|
||||
pname = "plasma-framework";
|
||||
patches = [
|
||||
# FIXME: remove on kf5.96
|
||||
(fetchpatch {
|
||||
name = "fix-thumbnails-task-manager.patch";
|
||||
url = "https://invent.kde.org/frameworks/plasma-framework/-/commit/dff1b034c1162062aa2292099d3d01fc53dafdf6.patch";
|
||||
sha256 = "sha256-0162bi3J5bl5BmmUSrhxxy8MpLtSXkdHGK8wMcS5BB8=";
|
||||
})
|
||||
];
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
|
||||
|
|
Loading…
Reference in a new issue