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