mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
18 lines
315 B
Nix
18 lines
315 B
Nix
{ mkDerivation, lib
|
|
, libkdegames, extra-cmake-modules
|
|
, kdeclarative, knewstuff
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "bomber";
|
|
meta = with lib; { maintainers = with maintainers; [ freezeboy ]; };
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kdeclarative
|
|
knewstuff
|
|
libkdegames
|
|
];
|
|
}
|