summary refs log blame commit diff
path: root/pkgs/applications/kde/ksudoku.nix
blob: 3641c1b333237931a6641bd4a253cab72ebd5f09 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















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

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