summary refs log tree commit diff
path: root/pkgs/data/themes/utterly-round-plasma-style/default.nix
blob: 40bdb2f71d8879bba3badfba054d8dc262b1f5d3 (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
39
40
{ lib
, stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
  pname = "utterly-round-plasma-style";
  version = "2.1";

  src = fetchFromGitHub {
    owner = "HimDek";
    repo = pname;
    rev = "c3677d5223286f69871f6745cdb3b71367229d40";
    hash = "sha256-mlqRMz0cAZnnM4xE6p7fMzhGlqCQcM4FxmDlVnbGUgQ=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/{aurorae/themes,plasma/desktoptheme}

    cp -a aurorae/dark/translucent $out/share/aurorae/themes/Utterly-Round-Dark
    cp -a aurorae/dark/solid $out/share/aurorae/themes/Utterly-Round-Dark-Solid
    cp -a aurorae/light/translucent $out/share/aurorae/themes/Utterly-Round-Light
    cp -a aurorae/light/solid $out/share/aurorae/themes/Utterly-Round-Light-Solid

    cp -a desktoptheme/translucent $out/share/plasma/desktoptheme/Utterly-Round
    cp -a desktoptheme/solid $out/share/plasma/desktoptheme/Utterly-Round-Solid

    runHook postInstall
  '';

  meta = with lib; {
    description = "A rounded desktop theme and window borders for Plasma 5 that follows any color scheme";
    homepage = "https://himdek.com/Utterly-Round-Plasma-Style/";
    license = licenses.gpl2Plus;
    platforms = platforms.all;
    maintainers = [ maintainers.romildo ];
  };
}