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