2020-11-04 15:49:42 +03:00
|
|
|
{ mkDerivation, qtbase
|
2021-03-26 13:04:07 +03:00
|
|
|
, lib, extra-cmake-modules, gettext, python3
|
2017-04-23 15:23:22 +03:00
|
|
|
, drumstick, fluidsynth
|
|
|
|
, kcoreaddons, kcrash, kdoctools
|
2019-01-04 11:56:49 +03:00
|
|
|
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
|
2017-04-23 15:23:22 +03:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-25 02:05:07 +03:00
|
|
|
pname = "minuet";
|
2017-04-23 15:23:22 +03:00
|
|
|
meta = with lib; {
|
2021-09-18 12:48:23 +03:00
|
|
|
homepage = "https://apps.kde.org/minuet/";
|
|
|
|
description = "Music Education Software";
|
2017-04-23 15:23:22 +03:00
|
|
|
license = with licenses; [ lgpl21 gpl3 ];
|
2019-01-04 14:28:01 +03:00
|
|
|
maintainers = with maintainers; [ peterhoeg HaoZeke ];
|
2020-11-04 15:49:42 +03:00
|
|
|
broken = lib.versionOlder qtbase.version "5.14";
|
2017-04-23 15:23:22 +03:00
|
|
|
};
|
|
|
|
|
2021-03-26 13:04:07 +03:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ];
|
2018-01-10 17:40:53 +03:00
|
|
|
|
2017-04-23 15:23:22 +03:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
drumstick fluidsynth
|
|
|
|
kcoreaddons kcrash
|
|
|
|
qtquickcontrols2 qtsvg qttools
|
|
|
|
];
|
2018-01-10 17:40:53 +03:00
|
|
|
|
2017-04-23 15:23:22 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|