summary refs log blame commit diff
path: root/pkgs/applications/kde/minuet.nix
blob: cc7be0bf79a698fae7ce6373ed18dea27c59d8d0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                      
                                            

                                
                                                 


              
                   

                                             
                                                          
                                                    

    
                                                                                      
 




                                  
 

                                
{ mkDerivation, qtbase
, lib, extra-cmake-modules, gettext, python3
, drumstick, fluidsynth
, kcoreaddons, kcrash, kdoctools
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
}:

mkDerivation {
  pname = "minuet";
  meta = with lib; {
    license = with licenses; [ lgpl21 gpl3 ];
    maintainers = with maintainers; [ peterhoeg HaoZeke ];
    broken = lib.versionOlder qtbase.version "5.14";
  };

  nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ];

  propagatedBuildInputs = [
    drumstick fluidsynth
    kcoreaddons kcrash
    qtquickcontrols2 qtsvg qttools
  ];

  enableParallelBuilding = true;
}