nixpkgs-suyu/pkgs/desktops/plasma-5/plasma-thunderbolt.nix

17 lines
230 B
Nix
Raw Normal View History

2020-11-09 16:11:55 +01:00
{ mkDerivation
, extra-cmake-modules
, kcmutils
, kcoreaddons
, bolt
}:
mkDerivation {
2022-03-06 22:28:56 +01:00
pname = "plasma-thunderbolt";
2020-11-09 16:11:55 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kcmutils
kcoreaddons
bolt
];
}