
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build a08b3a4d19
.tar.gz \
--argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
result/bin/apply-formatting $NIXPKGS_PATH
99 lines
2.9 KiB
Nix
99 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gtk2-x11,
|
|
glib,
|
|
pango,
|
|
cairo,
|
|
atk,
|
|
gdk-pixbuf,
|
|
libX11,
|
|
}:
|
|
|
|
# Arena is free software in the sense of "free beer" but not as in "free
|
|
# speech". We can install it as we please, but we cannot re-distribute it in
|
|
# any way other than the original release tarball, so we cannot include its NAR
|
|
# into the Nixpkgs channel.
|
|
|
|
let
|
|
|
|
inherit (lib) makeLibraryPath;
|
|
libDir = "lib64";
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "arena";
|
|
version = "3.10-beta";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.playwitharena.de/downloads/arenalinux_64bit_${
|
|
lib.replaceStrings [ "-" ] [ "" ] version
|
|
}.tar.gz";
|
|
sha256 = "1pzb9sg4lzbbi4gbldvlb85p8xyl9xnplxwyb9pkk2mwzvvxkf0d";
|
|
};
|
|
|
|
# stdenv.cc.cc.lib is in that list to pick up libstdc++.so. Is there a better way?
|
|
buildInputs = [
|
|
gtk2-x11
|
|
glib
|
|
pango
|
|
cairo
|
|
atk
|
|
gdk-pixbuf
|
|
libX11
|
|
(lib.getLib stdenv.cc.cc)
|
|
];
|
|
|
|
unpackPhase = ''
|
|
# This is is a tar bomb, i.e. it extract a dozen files and directories to
|
|
# the top-level, so we must create a sub-directory first.
|
|
mkdir -p $out/lib/${pname}-${version}
|
|
tar -C $out/lib/${pname}-${version} -xf ${src}
|
|
|
|
# Remove executable bits from data files. This matters for the find command
|
|
# we'll use below to find all bundled engines.
|
|
chmod -x $out/lib/${pname}-${version}/Engines/*/*.{txt,bin,bmp,zip}
|
|
'';
|
|
|
|
buildPhase = ''
|
|
# Arena has (at least) two executables plus a couple of bundled chess
|
|
# engines that we need to patch.
|
|
exes=( $(find $out -name '*x86_64_linux')
|
|
$(find $out/lib/${pname}-${version}/Engines -type f -perm /u+x)
|
|
)
|
|
for i in "''${exes[@]}"; do
|
|
# Arminius is statically linked.
|
|
if [[ $i =~ "Arminius_2017-01-01" ]]; then echo yo $i; continue; fi
|
|
echo Fixing interpreter and rpath paths in $i ...
|
|
patchelf \
|
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${makeLibraryPath buildInputs}:$(cat $NIX_CC/nix-support/orig-cc)/${libDir} \
|
|
$i
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
ln -s $out/lib/${pname}-${version}/Arena_x86_64_linux $out/bin/arena
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
description = "Chess GUI for analyzing with and playing against various engines";
|
|
longDescription = ''
|
|
A free Graphical User Interface (GUI) for chess. Arena assists you in
|
|
analyzing and playing games as well as in testing chess engines. It runs
|
|
on Linux or Windows. Arena is compatible to Winboard protocol I, II and
|
|
UCI protocol I, II. Furthermore, compatible to Chess960, DGT electronic
|
|
chess board & DGT clocks and much more.
|
|
'';
|
|
license = lib.licenses.unfree;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
homepage = "http://www.playwitharena.de";
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
|
|
}
|