summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/threadweaver.nix
blob: bfa529c9267ae8444abeda5bc4c39ec879542a70 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
               

                      

  
              
                        
                                              

                                     
 
{
  mkDerivation,
  extra-cmake-modules,
  qtbase
}:

mkDerivation {
  name = "threadweaver";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}