1{
2 mkDerivation,
3 lib,
4 kdecoration,
5 fetchFromGitHub,
6 cmake,
7 extra-cmake-modules,
8 plasma-workspace,
9 qtbase,
10 qt5,
11}:
12
13mkDerivation {
14 pname = "lightly-boehs";
15 version = "0.4.1";
16
17 src = fetchFromGitHub {
18 owner = "boehs";
19 repo = "Lightly";
20 rev = "1a831f7ff19ce93c04489faec74e389a216fdf11";
21 sha256 = "Icw+xVmuCB59ltyZJKyIeHI/yGfM2SbPrVzTVLqHWd4=";
22 };
23
24 buildInputs = [
25 kdecoration
26 plasma-workspace
27 qtbase
28 qt5.qtx11extras
29 ];
30
31 nativeBuildInputs = [
32 cmake
33 extra-cmake-modules
34 ];
35
36 meta = with lib; {
37 description = "Fork of the Lightly breeze theme style that aims to be visually modern and minimalistic";
38 mainProgram = "lightly-settings5";
39 homepage = "https://github.com/boehs/Lightly";
40 license = licenses.gpl2Plus;
41 maintainers = [ maintainers.hikari ];
42 platforms = platforms.all;
43 };
44}