mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.8 KiB
Nix
62 lines
1.8 KiB
Nix
{ lib, stdenv, fetchurl, cpio, xorgproto, libX11, libXmu, libXaw, libXt, tcl, tk
|
|
, libXext, fontconfig, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xconq";
|
|
version = "7.5.0-0pre.0.20050612";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/xconq/xconq/xconq-${version}/xconq-${version}.tar.gz";
|
|
sha256 = "1za78yx57mgwcmmi33wx3533yz1x093dnqis8q2qmqivxav51lca";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ cpio xorgproto libX11 libXmu libXaw libXt tcl tk libXext fontconfig ];
|
|
|
|
configureFlags = [
|
|
"--enable-alternate-scoresdir=scores"
|
|
"--with-tclconfig=${tcl}/lib"
|
|
"--with-tkconfig=${tk}/lib"
|
|
];
|
|
|
|
env.CXXFLAGS = toString [
|
|
"-std=c++11"
|
|
"-DUSE_INTERP_RESULT"
|
|
"-Wno-writable-strings"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
patchPhase = ''
|
|
# Fix Makefiles
|
|
find . -name 'Makefile.in' -exec sed -re 's@^ ( *)(cd|[&][&])@ \1\2@' -i '{}' ';'
|
|
find . -name 'Makefile.in' -exec sed -e '/chown/d; /chgrp/d' -i '{}' ';'
|
|
# do not set sticky bit in nix store
|
|
find . -name 'Makefile.in' -exec sed -e 's/04755/755/g' -i '{}' ';'
|
|
sed -e '/^ * *[$][(]tcltkdir[)]\/[*][.][*]/d' -i tcltk/Makefile.in
|
|
|
|
# Fix C files
|
|
sed -re 's@[(]int[)]color@(long)color@' -i tcltk/tkmap.c
|
|
sed -re '/unitp = view_unit[(]uview[)]/aelse *unitp = NULL\;' -i tcltk/tkmap.c
|
|
sed -re 's@BMAP_BYTE char@BMAP_BYTE unsigned char@' -i kernel/ui.h
|
|
|
|
# Fix TCL files
|
|
sed -re 's@MediumBlue@LightBlue@g' -i tcltk/tkconq.tcl
|
|
'';
|
|
|
|
postInstall = ''
|
|
for file in $out/bin/*; do
|
|
wrapProgram $file --prefix TCLLIBPATH ' ' "${tk}/lib"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Programmable turn-based strategy game";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|