nixpkgs/pkgs/applications/kde/ksudoku.nix

19 lines
348 B
Nix
Raw Normal View History

2019-12-25 20:27:18 +00:00
{ 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; [ ];
2019-12-25 20:27:18 +00:00
};
}