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