Merge pull request #11781 from ttuegel/kiconthemes
kde5.kiconthemes: default icon theme is breeze
This commit is contained in:
commit
9b26afff6e
|
@ -70,7 +70,7 @@ let
|
||||||
kguiaddons = callPackage ./kguiaddons.nix {};
|
kguiaddons = callPackage ./kguiaddons.nix {};
|
||||||
khtml = callPackage ./khtml.nix {};
|
khtml = callPackage ./khtml.nix {};
|
||||||
ki18n = callPackage ./ki18n.nix {};
|
ki18n = callPackage ./ki18n.nix {};
|
||||||
kiconthemes = callPackage ./kiconthemes.nix {};
|
kiconthemes = callPackage ./kiconthemes {};
|
||||||
kidletime = callPackage ./kidletime.nix {};
|
kidletime = callPackage ./kidletime.nix {};
|
||||||
kimageformats = callPackage ./kimageformats.nix {};
|
kimageformats = callPackage ./kimageformats.nix {};
|
||||||
kinit = callPackage ./kinit {};
|
kinit = callPackage ./kinit {};
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
Index: kiconthemes-5.17.0/src/kicontheme.cpp
|
||||||
|
===================================================================
|
||||||
|
--- kiconthemes-5.17.0.orig/src/kicontheme.cpp
|
||||||
|
+++ kiconthemes-5.17.0/src/kicontheme.cpp
|
||||||
|
@@ -557,7 +557,7 @@ void KIconTheme::reconfigure()
|
||||||
|
// static
|
||||||
|
QString KIconTheme::defaultThemeName()
|
||||||
|
{
|
||||||
|
- return QStringLiteral("oxygen");
|
||||||
|
+ return QStringLiteral("breeze");
|
||||||
|
}
|
||||||
|
|
||||||
|
void KIconTheme::assignIconsToContextMenu(ContextMenus type,
|
|
@ -1,13 +1,14 @@
|
||||||
{ kdeFramework, lib, makeQtWrapper
|
{ kdeFramework, lib, copyPathsToStore
|
||||||
, extra-cmake-modules, kconfigwidgets, ki18n
|
, extra-cmake-modules, makeQtWrapper
|
||||||
, kitemviews, qtsvg
|
, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
kdeFramework {
|
kdeFramework {
|
||||||
name = "kiconthemes";
|
name = "kiconthemes";
|
||||||
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
||||||
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
||||||
buildInputs = [ kconfigwidgets kitemviews qtsvg ];
|
buildInputs = [ kconfigwidgets kitemviews qtsvg ];
|
||||||
propagatedBuildInputs = [ ki18n ];
|
propagatedBuildInputs = [ breeze-icons ki18n ];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapQtProgram "$out/bin/kiconfinder5"
|
wrapQtProgram "$out/bin/kiconfinder5"
|
||||||
'';
|
'';
|
|
@ -0,0 +1 @@
|
||||||
|
default-theme-breeze.patch
|
Loading…
Reference in New Issue