nixpkgs/pkgs/applications/kde/ksudoku.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
459 B
Nix
Raw Normal View History

2019-12-25 20:27:18 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, libGLU
, kdoctools
, kdeclarative
, libkdegames
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "ksudoku";
2019-12-25 20:27:18 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libGLU kdeclarative libkdegames ];
meta = {
homepage = "https://apps.kde.org/ksudoku/";
description = "Suduko game";
mainProgram = "ksudoku";
2019-12-25 20:27:18 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
2019-12-25 20:27:18 +00:00
};
}