kmines: init at 20.04.3
This commit is contained in:
parent
3083545704
commit
3be794aef3
3 changed files with 25 additions and 1 deletions
|
@ -136,6 +136,7 @@ let
|
|||
kmailtransport = callPackage ./kmailtransport.nix {};
|
||||
kmbox = callPackage ./kmbox.nix {};
|
||||
kmime = callPackage ./kmime.nix {};
|
||||
kmines = callPackage ./kmines.nix {};
|
||||
kmix = callPackage ./kmix.nix {};
|
||||
kmplot = callPackage ./kmplot.nix {};
|
||||
knotes = callPackage ./knotes.nix {};
|
||||
|
|
23
pkgs/applications/kde/kmines.nix
Normal file
23
pkgs/applications/kde/kmines.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
|
||||
|
||||
mkDerivation {
|
||||
name = "kmines";
|
||||
meta = with lib; {
|
||||
homepage = "https://kde.org/applications/en/games/org.kde.kmines";
|
||||
description = "KMines is a classic Minesweeper game";
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
buildInputs = [
|
||||
libkdegames
|
||||
kconfig
|
||||
kcrash
|
||||
kio
|
||||
kdoctools
|
||||
ki18n
|
||||
];
|
||||
}
|
|
@ -21053,7 +21053,7 @@ in
|
|||
inherit (kdeApplications)
|
||||
akonadi akregator ark bomber bovo dolphin dragon elisa ffmpegthumbs filelight granatier gwenview k3b
|
||||
kaddressbook kapptemplate kate katomic kbounce kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
|
||||
keditbookmarks kfind kfloppy kget kgpg khelpcenter kig kigo kleopatra kmag kmail kmix kmplot kolourpaint kompare konsole yakuake
|
||||
keditbookmarks kfind kfloppy kget kgpg khelpcenter kig kigo kleopatra kmag kmail kmines kmix kmplot kolourpaint kompare konsole yakuake
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksquares ksystemlog ktouch kwalletmanager kwave marble minuet okular picmi spectacle;
|
||||
|
||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||
|
|
Loading…
Reference in a new issue