nixpkgs/pkgs/applications/kde/ksudoku.nix
Jörg Thalheim 72f6df338d remove genesis maintainer
genesis has no longer access to github
2020-11-18 22:37:56 -08:00

19 lines
348 B
Nix

{ 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; [ ];
};
}