mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
570 B
Nix
24 lines
570 B
Nix
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
|
|
|
|
mkDerivation {
|
|
pname = "kmines";
|
|
meta = with lib; {
|
|
homepage = "https://kde.org/applications/en/games/org.kde.kmines";
|
|
description = "Classic Minesweeper game";
|
|
mainProgram = "kmines";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
libkdegames
|
|
kconfig
|
|
kcrash
|
|
kio
|
|
kdoctools
|
|
ki18n
|
|
];
|
|
}
|