summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/solid.nix
blob: aa1b1ebe34581c66214896c0b9eeab0d560386ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation,
  bison, extra-cmake-modules, flex,
  media-player-info, qtbase, qtdeclarative, qttools
}:

mkDerivation {
  name = "solid";
  nativeBuildInputs = [ bison extra-cmake-modules flex media-player-info ];
  buildInputs = [ qtdeclarative qttools ];
  propagatedBuildInputs = [ qtbase ];
  propagatedUserEnvPkgs = [ media-player-info ];
}