nixpkgs/pkgs/applications/kde/kreversi.nix

20 lines
519 B
Nix
Raw Normal View History

2020-07-25 23:09:14 +00:00
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kdeclarative }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kreversi";
2020-07-25 23:09:14 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kreversi";
description = "A simple one player strategy game played against the computer";
2020-07-25 23:09:14 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdeclarative
libkdegames
];
}