Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

43 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "plasma-overdose-kde-theme";
version = "0-unstable-2022-05-30";
src = fetchFromGitHub {
owner = "Notify-ctrl";
repo = "Plasma-Overdose";
rev = "d8bf078b4819885d590db27cd1d25d8f4f08fe4c";
sha256 = "187f6rlvb2wf5sj3mgr69mfwh9fpqchw4yg6nzv54l98msmxc4h0";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share
mv colorschemes $out/share/color-schemes
mv plasma $out/share/plasma
mkdir -p $out/share/aurorae
mv aurorae $out/share/aurorae/themes
mkdir -p $out/share/icons/Plasma-Overdose
mv cursors/index.theme $out/share/icons/Plasma-Overdose/cursor.theme
mv cursors/cursors $out/share/icons/Plasma-Overdose/cursors
runHook postInstall
'';
meta = with lib; {
description = "Cute KDE theme inspired by the game Needy Girl Overdose";
homepage = "https://github.com/Notify-ctrl/Plasma-Overdose";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ takagiy ];
};
}