photoqt: 4.6 -> 4.7 (#361171)
[NixPkgs.git] / pkgs / applications / kde / minuet.nix
blob8e5285ac57d8e40525e9a034d677aa9936d99726
1 { mkDerivation
2 , lib, extra-cmake-modules, gettext, python3
3 , drumstick, fluidsynth
4 , kcoreaddons, kcrash, kdoctools
5 , qtquickcontrols2, qtsvg, qttools, qtdeclarative
6 }:
8 mkDerivation {
9   pname = "minuet";
10   meta = with lib; {
11     homepage = "https://apps.kde.org/minuet/";
12     description = "Music Education Software";
13     mainProgram = "minuet";
14     license = with licenses; [ lgpl21 gpl3 ];
15     maintainers = with maintainers; [ peterhoeg HaoZeke ];
16   };
18   nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ];
20   propagatedBuildInputs = [
21     drumstick fluidsynth
22     kcoreaddons kcrash
23     qtquickcontrols2 qtsvg qttools
24   ];
26   enableParallelBuilding = true;