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

mkDerivation {
  pname = "sonnet";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ aspell hunspell qttools ];
  propagatedBuildInputs = [ qtbase ];
}