cutechess: move to by-name, modernize

This commit is contained in:
Rafael Ieda
2025-10-09 07:11:47 -03:00
parent 9bb61fdc05
commit f9942d9ea9
2 changed files with 7 additions and 10 deletions
@@ -3,8 +3,7 @@
fetchFromGitHub,
cmake,
pkg-config,
wrapQtAppsHook,
qtbase,
qt5,
lib,
}:
@@ -15,17 +14,17 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "cutechess";
repo = "cutechess";
rev = "v${finalAttrs.version}";
tag = "v${finalAttrs.version}";
hash = "sha256-vhS3Eenxcq7D8E5WVON5C5hCTytcEVbYUeuCkfB0apA=";
};
nativeBuildInputs = [
cmake
pkg-config
wrapQtAppsHook
qt5.wrapQtAppsHook
];
buildInputs = [
qtbase
qt5.qtbase
];
postInstall = ''
@@ -35,12 +34,12 @@ stdenv.mkDerivation (finalAttrs: {
install -Dm444 $src/docs/cutechess-engines.json.5 -t $out/share/man/man5/
'';
meta = with lib; {
meta = {
description = "GUI, CLI, and library for playing chess";
homepage = "https://cutechess.com/";
license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = with platforms; (linux ++ windows);
platforms = with lib.platforms; (linux ++ windows);
mainProgram = "cutechess";
};
})
-2
View File
@@ -13366,8 +13366,6 @@ with pkgs;
curseofwar = callPackage ../games/curseofwar { SDL = null; };
curseofwar-sdl = callPackage ../games/curseofwar { ncurses = null; };
cutechess = qt5.callPackage ../games/cutechess { };
cutemaze = qt6Packages.callPackage ../games/cutemaze { };
ddnet-server = ddnet.override { buildClient = false; };