05bdbc55ff
Adapted from <https://apps.kde.org/>.
21 lines
430 B
Nix
21 lines
430 B
Nix
{ 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";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|