mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fairymax";
|
|
version = "4.8";
|
|
|
|
src = fetchurl {
|
|
url = "http://home.hccnet.nl/h.g.muller/fmax4_8w.c";
|
|
hash = "sha256-ikn+CA5lxtDYSDT+Nsv1tfORhKW6/vlmHcGAT9SFfQc=";
|
|
};
|
|
|
|
ini = fetchurl {
|
|
url = "http://home.hccnet.nl/h.g.muller/fmax.ini";
|
|
hash = "sha256-lh2ivXx4jNdWn3pT1WKKNEvkVQ31JfdDx+vqNx44nf8=";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
cp ${src} fairymax.c
|
|
cp ${ini} fmax.ini
|
|
'';
|
|
|
|
buildPhase = ''
|
|
cc *.c -Wno-return-type \
|
|
-o fairymax \
|
|
-DINI_FILE='"'"$out/share/fairymax/fmax.ini"'"'
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"/{bin,share/fairymax}
|
|
cp fairymax "$out/bin"
|
|
cp fmax.ini "$out/share/fairymax"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://home.hccnet.nl/h.g.muller/dwnldpage.html";
|
|
description = "Small chess engine supporting fairy pieces";
|
|
mainProgram = "fairymax";
|
|
longDescription = ''
|
|
A version of micro-Max that reads the piece description from a file
|
|
fmax.ini, so that arbitrary fairy pieces can be implemented. This version
|
|
(4.8J) supports up to 15 piece types, and board sizes up to 12x8.
|
|
'';
|
|
license = licenses.free;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|