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

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