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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
230 B
Nix
Raw Normal View History

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