2017-04-23 13:23:22 +01:00
|
|
|
{ mkDerivation
|
2018-01-10 14:40:53 +00:00
|
|
|
, lib, extra-cmake-modules, gettext, python
|
2017-04-23 13:23:22 +01:00
|
|
|
, drumstick, fluidsynth
|
|
|
|
, kcoreaddons, kcrash, kdoctools
|
2019-01-04 08:56:49 +00:00
|
|
|
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
|
2017-04-23 13:23:22 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
|
|
|
name = "minuet";
|
|
|
|
meta = with lib; {
|
|
|
|
license = with licenses; [ lgpl21 gpl3 ];
|
2019-01-04 11:28:01 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg HaoZeke ];
|
2017-04-23 13:23:22 +01:00
|
|
|
};
|
|
|
|
|
2019-01-04 08:56:49 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python qtdeclarative ];
|
2018-01-10 14:40:53 +00:00
|
|
|
|
2017-04-23 13:23:22 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
drumstick fluidsynth
|
|
|
|
kcoreaddons kcrash
|
|
|
|
qtquickcontrols2 qtsvg qttools
|
|
|
|
];
|
2018-01-10 14:40:53 +00:00
|
|
|
|
2017-04-23 13:23:22 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|