d29cee773c
dwarf-therapist: 37.0.0-Hello71 -> 39.0.0 dfhack: 0.43.05-r1 -> 0.44.02-alpha1 cla-theme: 43.05-v23 -> 44.01-v24 phoebus-theme: 43.05c -> 44.02a There is a new maintained repository for dwarf-therapist: http://www.bay12forums.com/smf/index.php?topic=168411 dfhack is still in alpha, so make backups, if you use it. cc @the-kenny @abbradar
78 lines
2.2 KiB
Nix
78 lines
2.2 KiB
Nix
{ stdenv, lib, fetchgit, cmake, writeScriptBin, callPackage
|
|
, perl, XMLLibXML, XMLLibXSLT, zlib
|
|
, enableStoneSense ? false, allegro5, mesa
|
|
}:
|
|
|
|
let
|
|
dfVersion = "0.44.02";
|
|
version = "${dfVersion}-alpha1";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "1cdp2jwhxl54ym92jm58xyrz942ajp6idl31qrmzcqzawp2fl620";
|
|
|
|
# revision of library/xml submodule
|
|
xmlRev = "e2e256066cc4a5c427172d9d27db25b7823e4e86";
|
|
|
|
arch =
|
|
if stdenv.system == "x86_64-linux" then "64"
|
|
else if stdenv.system == "i686-linux" then "32"
|
|
else throw "Unsupported architecture";
|
|
|
|
fakegit = writeScriptBin "git" ''
|
|
#! ${stdenv.shell}
|
|
if [ "$*" = "describe --tags --long" ]; then
|
|
echo "${version}-unknown"
|
|
elif [ "$*" = "rev-parse HEAD" ]; then
|
|
if [ "$(dirname "$(pwd)")" = "xml" ]; then
|
|
echo "${xmlRev}"
|
|
else
|
|
echo "${rev}"
|
|
fi
|
|
elif [ "$*" = "rev-parse HEAD:library/xml" ]; then
|
|
echo "${xmlRev}"
|
|
else
|
|
exit 1
|
|
fi
|
|
'';
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "dfhack-${version}";
|
|
|
|
# Beware of submodules
|
|
src = fetchgit {
|
|
url = "https://github.com/DFHack/dfhack";
|
|
inherit rev sha256;
|
|
};
|
|
|
|
patches = [ ./fix-stonesense.patch ];
|
|
|
|
nativeBuildInputs = [ cmake perl XMLLibXML XMLLibXSLT fakegit ];
|
|
# We don't use system libraries because dfhack needs old C++ ABI.
|
|
buildInputs = [ zlib ]
|
|
++ lib.optionals enableStoneSense [ allegro5 mesa ];
|
|
|
|
preConfigure = ''
|
|
# Trick build system into believing we have .git
|
|
mkdir -p .git/modules/library/xml
|
|
touch .git/index .git/modules/library/xml/index
|
|
'';
|
|
|
|
preBuild = ''
|
|
export LD_LIBRARY_PATH="$PWD/depends/protobuf:$LD_LIBRARY_PATH"
|
|
'';
|
|
|
|
cmakeFlags = [ "-DDFHACK_BUILD_ARCH=${arch}" "-DDOWNLOAD_RUBY=OFF" ]
|
|
++ lib.optionals enableStoneSense [ "-DBUILD_STONESENSE=ON" "-DSTONESENSE_INTERNAL_SO=OFF" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = { inherit version dfVersion; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Memory hacking library for Dwarf Fortress and a set of tools that use it";
|
|
homepage = https://github.com/DFHack/dfhack/;
|
|
license = licenses.zlib;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = with maintainers; [ robbinch a1russell abbradar ];
|
|
};
|
|
}
|