about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-thunderbolt.nix
blob: c35f1bf097017ba48fff818f1cb8dfba60206c3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation
, extra-cmake-modules
, kcmutils
, kcoreaddons
, bolt
}:

mkDerivation {
  pname = "plasma-thunderbolt";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kcmutils
    kcoreaddons
    bolt
  ];
}