Merge pull request #264422 from romildo/upd.graphite-kde-theme

graphite-kde-theme: 2022-02-08 -> unstable-2023-10-25
This commit is contained in:
José Romildo Malaquias 2023-11-22 07:16:30 -03:00 committed by GitHub
commit 2c8d4198c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 8 deletions

View File

@ -1,36 +1,55 @@
{ stdenv { stdenv
, lib , lib
, fetchFromGitHub , fetchFromGitHub
, kdeclarative
, plasma-framework
, plasma-workspace
, gitUpdater
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "graphite-kde-theme"; pname = "graphite-kde-theme";
version = "2022-02-08"; version = "unstable-2023-10-25";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vinceliuice"; owner = "vinceliuice";
repo = pname; repo = pname;
rev = version; rev = "33cc85c49c424dfcba73e6ee84b0dc7fb9e52566";
sha256 = "0pnn5s1vfdgkpsy5sc838731ly1imi8pbyd4asibw4zi238l0nvf"; hash = "sha256-iQGT2x0wY2EIuYw/a1MB8rT9BxiqWrOyBo6EGIJwsFw=";
}; };
installPhase = '' # Propagate sddm theme dependencies to user env otherwise sddm does
runHook preInstall # not find them. Putting them in buildInputs is not enough.
propagatedUserEnvPkgs = [
kdeclarative.bin
plasma-framework
plasma-workspace
];
postPatch = ''
patchShebangs install.sh patchShebangs install.sh
substituteInPlace install.sh \ substituteInPlace install.sh \
--replace '$HOME/.local' $out \ --replace '$HOME/.local' $out \
--replace '$HOME/.config' $out/share --replace '$HOME/.config' $out/share
name= ./install.sh --dest $out/share/themes substituteInPlace sddm/*/Main.qml \
--replace /usr $out
'';
installPhase = ''
runHook preInstall
name= ./install.sh
mkdir -p $out/share/sddm/themes mkdir -p $out/share/sddm/themes
cp -a sddm/Graphite $out/share/sddm/themes/ cp -a sddm/Graphite* $out/share/sddm/themes/
runHook postInstall runHook postInstall
''; '';
passthru.updateScript = gitUpdater { };
meta = with lib; { meta = with lib; {
description = "A flat Design theme for KDE Plasma desktop"; description = "A flat Design theme for KDE Plasma desktop";
homepage = "https://github.com/vinceliuice/Graphite-kde-theme"; homepage = "https://github.com/vinceliuice/Graphite-kde-theme";

View File

@ -29373,7 +29373,9 @@ with pkgs;
graphite-gtk-theme = callPackage ../data/themes/graphite-gtk-theme { }; graphite-gtk-theme = callPackage ../data/themes/graphite-gtk-theme { };
graphite-kde-theme = callPackage ../data/themes/graphite-kde-theme { }; graphite-kde-theme = callPackage ../data/themes/graphite-kde-theme {
inherit (libsForQt5) kdeclarative plasma-framework plasma-workspace;
};
greybird = callPackage ../data/themes/greybird { }; greybird = callPackage ../data/themes/greybird { };