about summary refs log tree commit diff
path: root/pkgs/data/themes/lightly-qt/default.nix
blob: 9e4adc75851535052002754717bb06cf32414f48 (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
41
42
{ mkDerivation
, lib
, fetchFromGitHub
, cmake
, extra-cmake-modules
, kdecoration
, plasma-workspace
, qtbase
, qt5
}:

mkDerivation rec {
  pname = "lightly-qt";
  version = "0.4.1";

  src = fetchFromGitHub {
    owner = "Luwx";
    repo = "Lightly";
    rev = "v${version}";
    sha256 = "0qkjzgjplgwczhk6959iah4ilvazpprv7yb809jy75kkp1jw8mwk";
  };

  buildInputs = [
    kdecoration
    plasma-workspace
    qtbase
    qt5.qtx11extras
  ];

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  meta = {
    description = "A fork of breeze theme style that aims to be visually modern and minimalistic";
    homepage = "https://github.com/Luwx/Lightly";
    license = lib.licenses.gpl2;
    maintainers = with lib.maintainers; [ pwoelfel ];
    platforms = lib.platforms.all;
  };
}