2015-07-01 22:06:39 +02:00
|
|
|
{ stdenv, fetchurl, cpio, xproto, libX11, libXmu, libXaw, libXt, tcl, tk
|
|
|
|
, libXext, fontconfig, makeWrapper }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${baseName}-${version}";
|
2016-02-07 23:30:22 +01:00
|
|
|
baseName = "xconq";
|
2015-07-01 22:06:39 +02:00
|
|
|
version = "7.5.0-0pre.0.20050612";
|
2016-02-07 23:30:22 +01:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/${baseName}/${baseName}/${name}/${name}.tar.gz";
|
|
|
|
sha256 = "1za78yx57mgwcmmi33wx3533yz1x093dnqis8q2qmqivxav51lca";
|
2011-05-28 17:36:56 +02:00
|
|
|
};
|
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
buildInputs = [ cpio xproto libX11 libXmu libXaw libXt tcl tk libXext
|
|
|
|
fontconfig makeWrapper ];
|
2011-05-28 17:36:56 +02:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-alternate-scoresdir=scores"
|
|
|
|
"--with-tclconfig=${tcl}/lib"
|
|
|
|
"--with-tkconfig=${tk}/lib"
|
|
|
|
];
|
2011-05-28 17:36:56 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 23:30:22 +01:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
patchPhase = ''
|
|
|
|
# Fix Makefiles
|
2011-05-28 17:36:56 +02:00
|
|
|
find . -name 'Makefile.in' -exec sed -re 's@^ ( *)(cd|[&][&])@ \1\2@' -i '{}' ';'
|
|
|
|
find . -name 'Makefile.in' -exec sed -e '/chown/d; /chgrp/d' -i '{}' ';'
|
2017-06-17 11:46:48 +02:00
|
|
|
# do not set sticky bit in nix store
|
2017-06-16 14:04:54 +02:00
|
|
|
find . -name 'Makefile.in' -exec sed -e 's/04755/755/g' -i '{}' ';'
|
2011-05-28 17:36:56 +02:00
|
|
|
sed -e '/^ * *[$][(]tcltkdir[)]\/[*][.][*]/d' -i tcltk/Makefile.in
|
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
# Fix C files
|
2011-05-28 17:36:56 +02:00
|
|
|
sed -re 's@[(]int[)]color@(long)color@' -i tcltk/tkmap.c
|
2011-05-31 21:34:06 +02:00
|
|
|
sed -re '/unitp = view_unit[(]uview[)]/aelse *unitp = NULL\;' -i tcltk/tkmap.c
|
2017-08-29 20:31:45 +02:00
|
|
|
sed -re 's@BMAP_BYTE char@BMAP_BYTE unsigned char@' -i kernel/ui.h
|
2011-05-28 17:36:56 +02:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
# Fix TCL files
|
2011-05-31 22:18:40 +02:00
|
|
|
sed -re 's@MediumBlue@LightBlue@g' -i tcltk/tkconq.tcl
|
2015-07-01 22:06:39 +02:00
|
|
|
'';
|
2011-05-31 22:18:40 +02:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
postInstall = ''
|
|
|
|
for file in $out/bin/*; do
|
|
|
|
wrapProgram $file --prefix TCLLIBPATH ' ' "${tk}/lib"
|
|
|
|
done
|
|
|
|
'';
|
2011-05-28 17:36:56 +02:00
|
|
|
|
2015-07-01 22:06:39 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-05-28 17:36:56 +02:00
|
|
|
description = "A programmable turn-based strategy game";
|
2015-07-01 22:06:39 +02:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2011-05-28 17:36:56 +02:00
|
|
|
};
|
2015-07-01 22:06:39 +02:00
|
|
|
}
|