mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, cmake
|
|
, libGL, libSM, SDL, SDL_image, SDL_ttf, glew, openalSoft
|
|
, ncurses, glib, gtk2, libsndfile, zlib
|
|
}:
|
|
|
|
let dfVersion = "0.44.11"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "dwarf_fortress_unfuck-${dfVersion}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "dwarf_fortress_unfuck";
|
|
rev = dfVersion;
|
|
sha256 = "0kkk8md2xq8l0c4m9hkg66qqjad3xi4jbb5z2ginhqixxpfbz8rf";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
|
|
"-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include"
|
|
];
|
|
|
|
makeFlags = [
|
|
''CFLAGS="-fkeep-inline-functions"''
|
|
''CXXFLAGS="-fkeep-inline-functions"''
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
libSM SDL SDL_image SDL_ttf glew openalSoft
|
|
ncurses gtk2 libsndfile zlib libGL
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt --replace \
|
|
'set(CMAKE_BUILD_TYPE Release)' \
|
|
'set(CMAKE_BUILD_TYPE Debug)'
|
|
'';
|
|
|
|
# Don't strip unused symbols; dfhack hooks into some of them.
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
install -D -m755 ../build/libgraphics.so $out/lib/libgraphics.so
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Breaks dfhack because of inlining.
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
passthru = { inherit dfVersion; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unfucked multimedia layer for Dwarf Fortress";
|
|
homepage = https://github.com/svenstaro/dwarf_fortress_unfuck;
|
|
license = licenses.free;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|