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

kdeFramework {
  name = "solid";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
  };
  nativeBuildInputs = [ bison extra-cmake-modules flex qttools ];
  propagatedBuildInputs = [ qtdeclarative ];
}