1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/desktops/plasma-5/plasma-thunderbolt.nix
2022-03-06 22:28:59 +01:00

17 lines
230 B
Nix

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