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

mkDerivation {
  name = "sonnet";
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
    broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ hunspell qttools ];
  propagatedBuildInputs = [ qtbase ];
}