about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/ksudoku.nix
blob: 64567ad9d88f4474c2deb3f360912bad1365f8ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, mkDerivation
, extra-cmake-modules
, libGLU
, kdoctools
, kdeclarative
, libkdegames
}:

mkDerivation {
  pname = "ksudoku";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ libGLU kdeclarative libkdegames ];
  meta = {
    homepage = "https://apps.kde.org/ksudoku/";
    description = "Suduko game";
    mainProgram = "ksudoku";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ ];
  };
}