nixpkgs/pkgs/applications/kde/konquest.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
618 B
Nix
Raw Normal View History

2018-05-18 12:46:12 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kconfig
, kcoreaddons
, kcrash
, kdbusaddons
, kguiaddons
, kxmlgui
, kwidgetsaddons
2018-05-18 12:46:12 +00:00
, libkdegames
, qtquickcontrols
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "konquest";
2018-05-18 12:46:12 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kconfig kcoreaddons kcrash kdbusaddons kguiaddons kxmlgui kwidgetsaddons
libkdegames
qtquickcontrols
];
2018-05-18 12:46:12 +00:00
meta = {
homepage = "https://apps.kde.org/konquest/";
description = "Galactic strategy game";
2018-05-18 12:46:12 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ lheckemann ];
};
}