Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / minuet.nix
blob0aaa5012a073d28c9ec7975b8dcb616c0ca0932a
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     license = with licenses; [ lgpl21 gpl3 ];
14     maintainers = with maintainers; [ peterhoeg HaoZeke ];
15   };
17   nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ];
19   propagatedBuildInputs = [
20     drumstick fluidsynth
21     kcoreaddons kcrash
22     qtquickcontrols2 qtsvg qttools
23   ];
25   enableParallelBuilding = true;