2017-05-15 19:05:35 +02:00
|
|
|
{ mkDerivation, lib
|
2017-02-26 13:49:15 +01:00
|
|
|
, extra-cmake-modules
|
|
|
|
, hunspell, 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-02-28 14:48:14 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
|
|
|
|
};
|
2017-02-26 13:49:15 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
|
|
buildInputs = [ hunspell qtbase ];
|
2016-04-21 17:32:21 +02:00
|
|
|
}
|