mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
553 B
Nix
24 lines
553 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|