2021-04-26 19:14:03 +00:00
|
|
|
{ mkDerivation
|
2020-04-24 23:36:52 +00:00
|
|
|
, extra-cmake-modules
|
2023-10-19 13:55:26 +00:00
|
|
|
, aspell, hunspell, qtbase, qttools
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2022-04-15 01:41:22 +00:00
|
|
|
pname = "sonnet";
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2023-10-19 13:55:26 +00:00
|
|
|
buildInputs = [ aspell hunspell qttools ];
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
}
|