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

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