mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
kblackbox: init at 20.04.3
This commit is contained in:
parent
4331654628
commit
5344891159
|
@ -97,6 +97,7 @@ let
|
|||
kapptemplate = callPackage ./kapptemplate.nix { };
|
||||
kate = callPackage ./kate.nix {};
|
||||
katomic = callPackage ./katomic.nix {};
|
||||
kblackbox = callPackage ./kblackbox.nix {};
|
||||
kblocks = callPackage ./kblocks.nix {};
|
||||
kbounce = callPackage ./kbounce.nix {};
|
||||
kbreakout = callPackage ./kbreakout.nix {};
|
||||
|
|
21
pkgs/applications/kde/kblackbox.nix
Normal file
21
pkgs/applications/kde/kblackbox.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
|
||||
|
||||
mkDerivation {
|
||||
name = "kblackbox";
|
||||
meta = with lib; {
|
||||
homepage = "https://kde.org/applications/en/games/org.kde.kblackbox";
|
||||
description = "KBlackbox is a game of hide and seek played on a grid of boxes";
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
buildInputs = [
|
||||
libkdegames
|
||||
kdoctools
|
||||
ki18n
|
||||
kio
|
||||
];
|
||||
}
|
|
@ -21052,7 +21052,7 @@ in
|
|||
|
||||
inherit (kdeApplications)
|
||||
akonadi akregator ark bomber bovo dolphin dragon elisa ffmpegthumbs filelight granatier gwenview k3b
|
||||
kaddressbook kalzium kapptemplate kapman kate katomic kblocks kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog kdiamond
|
||||
kaddressbook kalzium kapptemplate kapman kate katomic kblackbox kblocks kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog kdiamond
|
||||
keditbookmarks kfind kfloppy kget kgpg khelpcenter kig kigo killbots kleopatra klettres klines kmag kmail kmines kmix kmplot knetwalk kolourpaint kompare konsole yakuake
|
||||
kpkpass kitinerary kontact korganizer krdc kreversi krfb ksquares ksystemlog ktouch kturtle kwalletmanager kwave marble minuet okular picmi spectacle;
|
||||
|
||||
|
|
Loading…
Reference in a new issue