22dc5c7ee0
There are languages that don't have aspell dictionaries, so let's also build hunspell to cover both.
11 lines
244 B
Nix
11 lines
244 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, aspell, hunspell, qtbase, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "sonnet";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ aspell hunspell qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|