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

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