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









                     
                    



                                                        
                                            

    
{ lib
, mkDerivation
, extra-cmake-modules
, libGLU
, kdoctools
, kdeclarative
, libkdegames
}:

mkDerivation {
  pname = "ksudoku";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ libGLU kdeclarative libkdegames ];
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ ];
  };
}