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

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