summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/kdecoration.nix
blob: d8f996421ac9634a546301c7793e702173977fd0 (plain) (blame)
1
2
3
4
5
6
7
8
{ mkDerivation, extra-cmake-modules, qtbase }:

mkDerivation {
  name = "kdecoration";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}