about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kirigami-gallery.nix
blob: c22cc16aaf9127737004b8d4ebb2ca96c13d7aef (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
{ mkDerivation
, lib
, kirigami2
, extra-cmake-modules
, kitemmodels
, qtgraphicaleffects
, qtquickcontrols2
, qttools
}:

mkDerivation {
  pname = "kirigami-gallery";

  nativeBuildInputs = [ extra-cmake-modules qttools ];

  buildInputs = [
    qtgraphicaleffects
    qtquickcontrols2
    kirigami2
    kitemmodels
  ];

  meta = with lib; {
    homepage = "https://apps.kde.org/kirigami2.gallery/";
    description = "View examples of Kirigami components";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ shadowrz ];
  };
}