nixpkgs/pkgs/applications/kde/kmines.nix

24 lines
544 B
Nix
Raw Permalink Normal View History

2020-07-25 23:03:51 +00:00
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kmines";
2020-07-25 23:03:51 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kmines";
description = "A classic Minesweeper game";
2020-07-25 23:03:51 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
libkdegames
kconfig
kcrash
kio
kdoctools
ki18n
];
}