2020-04-14 08:57:32 +01:00
|
|
|
{ mkDerivation, lib
|
|
|
|
, extra-cmake-modules
|
|
|
|
, cmake
|
|
|
|
, kdbusaddons
|
|
|
|
, ki18n
|
|
|
|
, kconfigwidgets
|
|
|
|
, kcrash
|
|
|
|
, kxmlgui
|
|
|
|
, libkdegames
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "kbreakout";
|
2021-09-18 10:48:23 +01:00
|
|
|
meta = {
|
2022-01-12 16:41:04 +00:00
|
|
|
homepage = "https://apps.kde.org/kbreakout/";
|
2021-09-18 10:48:23 +01:00
|
|
|
description = "Breakout-like game";
|
|
|
|
license = with lib.licenses; [ lgpl21 gpl3 ];
|
|
|
|
};
|
2020-04-14 08:57:32 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake extra-cmake-modules
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
kdbusaddons ki18n kconfigwidgets kcrash kxmlgui libkdegames
|
|
|
|
];
|
|
|
|
}
|