nixpkgs/pkgs/applications/kde/ksudoku.nix

19 lines
349 B
Nix
Raw Permalink 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 = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
2019-12-25 20:27:18 +00:00
};
}