11 stdenv.mkDerivation rec {
13 version = "unstable-2023-09-30";
15 src = fetchFromGitHub {
16 owner = "vinceliuice";
18 rev = "7ab7cd7461dae8d8d6228d3919efbceea5f4272c";
19 hash = "sha256-Wh8tZcQEdTTlgtBf4ovapojHcpPBZDDkWOclmxZv9zA=";
22 # Propagate sddm theme dependencies to user env otherwise sddm does
23 # not find them. Putting them in buildInputs is not enough.
24 propagatedUserEnvPkgs = [
31 patchShebangs install.sh
33 substituteInPlace install.sh \
34 --replace '$HOME/.local' $out \
35 --replace '$HOME/.config' $out/share
37 substituteInPlace sddm/*/Main.qml \
44 name= ./install.sh --dest $out/share/themes
46 mkdir -p $out/share/sddm/themes
47 cp -a sddm/Layan* $out/share/sddm/themes/
52 passthru.updateScript = gitUpdater { };
55 description = "Flat Design theme for KDE Plasma desktop";
56 homepage = "https://github.com/vinceliuice/Layan-kde";
57 license = licenses.gpl3Only;
58 platforms = platforms.all;
59 maintainers = [ maintainers.romildo ];