mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
kbounce: init at 20.04.3
This commit is contained in:
parent
beb9180019
commit
a9a64375ae
@ -94,6 +94,7 @@ let
|
||||
kalarmcal = callPackage ./kalarmcal.nix {};
|
||||
kapptemplate = callPackage ./kapptemplate.nix { };
|
||||
kate = callPackage ./kate.nix {};
|
||||
kbounce = callPackage ./kbounce.nix {};
|
||||
kbreakout = callPackage ./kbreakout.nix {};
|
||||
kcachegrind = callPackage ./kcachegrind.nix {};
|
||||
kcalc = callPackage ./kcalc.nix {};
|
||||
|
22
pkgs/applications/kde/kbounce.nix
Normal file
22
pkgs/applications/kde/kbounce.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kio, ki18n }:
|
||||
|
||||
mkDerivation {
|
||||
name = "kbounce";
|
||||
meta = with lib; {
|
||||
homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
|
||||
description = "KBounce is a single player arcade game with the elements of puzzle";
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
buildInputs = [
|
||||
libkdegames
|
||||
kconfig
|
||||
kcrash
|
||||
kio
|
||||
ki18n
|
||||
];
|
||||
}
|
@ -21052,7 +21052,7 @@ in
|
||||
|
||||
inherit (kdeApplications)
|
||||
akonadi akregator ark bomber bovo dolphin dragon elisa ffmpegthumbs filelight granatier gwenview k3b
|
||||
kaddressbook kapptemplate kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||
kaddressbook kapptemplate kate kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||
keditbookmarks kfind kfloppy kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksquares ksystemlog ktouch kwalletmanager marble minuet okular picmi spectacle;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user