summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/solid.nix
blob: afd125e3c5973342e16557929aced04a3f719e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib
, extra-cmake-modules
, makeQtWrapper
, qtdeclarative
}:

kdeFramework {
  name = "solid";
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  buildInputs = [ qtdeclarative ];
  postInstall = ''
    wrapQtProgram "$out/bin/solid-hardware5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}