nixpkgs/pkgs/applications/kde/kbreakout.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
601 B
Nix
Raw Normal View History

{
mkDerivation,
lib,
extra-cmake-modules,
cmake,
kdbusaddons,
ki18n,
kconfigwidgets,
kcrash,
kxmlgui,
libkdegames,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kbreakout";
meta = {
homepage = "https://apps.kde.org/kbreakout/";
description = "Breakout-like game";
mainProgram = "kbreakout";
license = with lib.licenses; [
lgpl21
gpl3
];
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
cmake
extra-cmake-modules
];
propagatedBuildInputs = [
kdbusaddons
ki18n
kconfigwidgets
kcrash
kxmlgui
libkdegames
];
}