mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
538 B
Nix
27 lines
538 B
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules
|
|
, cmake
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kconfigwidgets
|
|
, kcrash
|
|
, kxmlgui
|
|
, libkdegames
|
|
}:
|
|
|
|
mkDerivation {
|
|
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
|
|
];
|
|
}
|