aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/desktops/plasma-5/plasma-thunderbolt.nix
blob: 1bb79c327ebf884c8f658dd3b7da9141f78a04d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation
, extra-cmake-modules
, kcmutils
, kcoreaddons
, bolt
}:

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