about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/flatpak-kcm.nix
blob: 406a0c9c920ce93c0c5dfecdc25d96df541f35c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation
, extra-cmake-modules
, flatpak
, kcmutils
, kconfig
, kdeclarative
}:

mkDerivation {
  pname = "flatpak-kcm";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    flatpak
    kcmutils
    kconfig
    kdeclarative
  ];
}