summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJosé Romildo <malaquias@gmail.com>2021-11-22 09:50:55 -0300
committerJosé Romildo <malaquias@gmail.com>2021-11-22 09:50:55 -0300
commit98fd890f48702a0634a74a69c1e60d3c2549a860 (patch)
treec13e4717dca10b8e0cfc1b49aa8d904af1db7a20 /pkgs/data
parent568014ae205743970ffa735c3b451376117c231a (diff)
downloadnixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar.gz
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar.bz2
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar.lz
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar.xz
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.tar.zst
nixpkgs-98fd890f48702a0634a74a69c1e60d3c2549a860.zip
nordic: install the kde related themes
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/nordic/default.nix15
1 files changed, 13 insertions, 2 deletions
diff --git a/pkgs/data/themes/nordic/default.nix b/pkgs/data/themes/nordic/default.nix
index 41189b21f49..31f9ec44ad3 100644
--- a/pkgs/data/themes/nordic/default.nix
+++ b/pkgs/data/themes/nordic/default.nix
@@ -76,6 +76,7 @@ stdenv.mkDerivation rec {
 
   installPhase = ''
     runHook preInstall
+
     mkdir -p $out/share/themes
     cp -a Nordic* $out/share/themes
     rm -r $out/share/themes/*/.gitignore
@@ -88,13 +89,23 @@ stdenv.mkDerivation rec {
     rm -r $out/share/themes/*/gnome-shell/{extensions,*.scss}
     rm -r $out/share/themes/*/gtk-2.0/{assets.svg,assets.txt,links.fish,render-assets.sh}
     rm -r $out/share/themes/*/gtk-3.0/{apps,widgets,*.scss}
-    rm -r $out/share/themes/*/kde
     rm -r $out/share/themes/*/xfwm4/{assets,render_assets.fish}
+
+    # move kde related contents to appropriate directories
+    mkdir -p $out/share/{aurorae/themes,color-schemes,Kvantum,plasma,sddm/themes/Nordic}
+    mv -v $out/share/themes/Nordic/kde/aurorae/* $out/share/aurorae/themes/
+    mv -v $out/share/themes/Nordic/kde/colorschemes/* $out/share/color-schemes/
+    mv -v $out/share/themes/Nordic/kde/konsole $out/share/
+    mv -v $out/share/themes/Nordic/kde/kvantum/* $out/share/Kvantum/
+    mv -v $out/share/themes/Nordic/kde/plasma/look-and-feel $out/share/plasma/
+    mv -v $out/share/themes/Nordic/kde/sddm/* $out/share/sddm/themes/Nordic/
+    rm -rf $out/share/themes/Nordic/kde
+
     runHook postInstall
   '';
 
   meta = with lib; {
-    description = "Gtk themes using the Nord color pallete";
+    description = "Gtk and KDE themes using the Nord color pallete";
     homepage = "https://github.com/EliverLara/Nordic";
     license = licenses.gpl3Only;
     platforms = platforms.all;