about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/themes/lightly-qt/default.nix
blob: 7b653d9524240b4e1ac8abf391fe5a4ea9f68ce4 (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 = with lib; {
    description = "A fork of breeze theme style that aims to be visually modern and minimalistic";
    homepage = "https://github.com/Luwx/Lightly";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.pwoelfel ];
    platforms = platforms.all;
  };
}