Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
22 lines
536 B
Nix
22 lines
536 B
Nix
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
|
|
|
|
mkDerivation {
|
|
pname = "kblocks";
|
|
meta = with lib; {
|
|
homepage = "https://kde.org/applications/en/games/org.kde.kblocks";
|
|
description = "Classic falling blocks game";
|
|
mainProgram = "kblocks";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
libkdegames
|
|
kdoctools
|
|
ki18n
|
|
kio
|
|
];
|
|
}
|