nixpkgs/pkgs/applications/kde/ksudoku.nix

19 lines
349 B
Nix
Raw Normal View History

2019-12-25 12:27:18 -08:00
{ lib
, mkDerivation
, extra-cmake-modules
, libGLU
, kdoctools
, kdeclarative
, libkdegames
}:
mkDerivation {
2020-12-24 15:05:07 -08:00
pname = "ksudoku";
2019-12-25 12:27:18 -08:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libGLU kdeclarative libkdegames ];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
2019-12-25 12:27:18 -08:00
};
}