2021-04-03 03:58:22 -07:00
|
|
|
{ mkDerivation
|
2017-02-26 04:49:15 -08:00
|
|
|
, extra-cmake-modules
|
2020-12-05 04:17:32 -08:00
|
|
|
, aspell, qtbase, qttools
|
2016-04-21 08:32:21 -07:00
|
|
|
}:
|
|
|
|
|
2017-05-15 10:05:35 -07:00
|
|
|
mkDerivation {
|
2016-04-21 08:32:21 -07:00
|
|
|
name = "sonnet";
|
2017-05-22 11:49:07 -07:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2020-12-05 04:17:32 -08:00
|
|
|
buildInputs = [ aspell qttools ];
|
2017-05-22 11:49:07 -07:00
|
|
|
propagatedBuildInputs = [ qtbase ];
|
2016-04-21 08:32:21 -07:00
|
|
|
}
|