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

mkDerivation {
  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 ];
}