fastchess: init at 1.4.0-alpha (#418338)
This commit is contained in:
commit
3c0d8314ff
@ -28015,6 +28015,12 @@
|
|||||||
{ fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09"; }
|
{ fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
Zirconium419122 = {
|
||||||
|
name = "Rasmus Liaskar";
|
||||||
|
github = "Zirconium419122";
|
||||||
|
email = "rasmus@liaskar.net";
|
||||||
|
githubId = 152716976;
|
||||||
|
};
|
||||||
zlepper = {
|
zlepper = {
|
||||||
name = "Rasmus Hansen";
|
name = "Rasmus Hansen";
|
||||||
github = "zlepper";
|
github = "zlepper";
|
||||||
|
|||||||
46
pkgs/by-name/fa/fastchess/package.nix
Normal file
46
pkgs/by-name/fa/fastchess/package.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
lowdown-unsandboxed,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "fastchess";
|
||||||
|
version = "1.4.0-alpha";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Disservin";
|
||||||
|
repo = "fastchess";
|
||||||
|
tag = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-fzNpanfeXk7eKftzcs5MIaDBvzumaMQIhhQ8IDFjwPQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
lowdown-unsandboxed
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace app/Makefile \
|
||||||
|
--replace "-march=native" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=${placeholder "out"}"
|
||||||
|
"CXX=${stdenv.cc.targetPrefix}c++"
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script { };
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Versatile command-line tool designed for running chess engine tournaments";
|
||||||
|
homepage = "https://github.com/Disservin/fastchess";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ Zirconium419122 ];
|
||||||
|
platforms = with lib.platforms; unix ++ windows;
|
||||||
|
mainProgram = "fastchess";
|
||||||
|
};
|
||||||
|
})
|
||||||
Loading…
x
Reference in New Issue
Block a user