about summary refs log tree commit diff
path: root/pkgs/data/themes/plasma-overdose-kde-theme/default.nix
blob: dc80c669804a3f151482fee49b81e8571dfc5dfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "plasma-overdose-kde-theme";
  version = "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 ];
  };
}