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