2021-04-03 12:58:22 +02:00
|
|
|
{ mkDerivation
|
2017-02-26 13:49:15 +01:00
|
|
|
, extra-cmake-modules
|
2023-10-15 19:06:33 +02:00
|
|
|
, aspell, hunspell, qtbase, qttools
|
2016-04-21 17:32:21 +02:00
|
|
|
}:
|
|
|
|
|
2017-05-15 19:05:35 +02:00
|
|
|
mkDerivation {
|
2022-02-23 18:28:27 +01:00
|
|
|
pname = "sonnet";
|
2017-05-22 20:49:07 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2023-10-15 19:06:33 +02:00
|
|
|
buildInputs = [ aspell hunspell qttools ];
|
2017-05-22 20:49:07 +02:00
|
|
|
propagatedBuildInputs = [ qtbase ];
|
2016-04-21 17:32:21 +02:00
|
|
|
}
|