about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-welcome.nix
blob: 1ae778b3282a9252add1f8ef1e1593ab5d2dab51 (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
43
44
{ mkDerivation
, extra-cmake-modules
, qtquickcontrols2
, accounts-qt
, kaccounts-integration
, kcoreaddons
, kconfigwidgets
, kdbusaddons
, kdeclarative
, ki18n
, kio
, kirigami2
, knewstuff
, knotifications
, kservice
, kuserfeedback
, kwindowsystem
, plasma-framework
, signond
}:

mkDerivation {
  pname = "plasma-welcome";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    qtquickcontrols2
    accounts-qt
    kaccounts-integration
    kcoreaddons
    kconfigwidgets
    kdbusaddons
    kdeclarative
    ki18n
    kio
    kirigami2
    knewstuff
    knotifications
    kservice
    kuserfeedback
    kwindowsystem
    plasma-framework
    signond
  ];
}