ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
19 lines
519 B
Nix
19 lines
519 B
Nix
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kdeclarative }:
|
|
|
|
mkDerivation {
|
|
pname = "kreversi";
|
|
meta = with lib; {
|
|
homepage = "https://kde.org/applications/en/games/org.kde.kreversi";
|
|
description = "A simple one player strategy game played against the computer";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kdeclarative
|
|
libkdegames
|
|
];
|
|
}
|