f928b91f34
There was no 3.1 for some reason. The old sed-based path patching was broken and resulted in syntax errors since it was a bit over-eager. Instead of fixing it, I decided to replace it with a patch file which is easier to inspect and will fail in a more obvious way next time. The patch is now applied unconditionally, since it actually applies to all linux platforms. The changes are localized to linux-specific code, so it does not hurt to apply it on non-linux platforms as well. Hedgewars needs a small fix to work with the new version. Done in the same commit to avoid a broken commit.
74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
{ stdenv
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pkgconfig
|
|
, lua
|
|
, fpc
|
|
, pcre
|
|
, portaudio
|
|
, freetype
|
|
, libpng
|
|
, SDL2
|
|
, SDL2_image
|
|
, SDL2_gfx
|
|
, SDL2_mixer
|
|
, SDL2_net, SDL2_ttf
|
|
, ffmpeg
|
|
, sqlite
|
|
, zlib
|
|
, libX11
|
|
, libGLU
|
|
, libGL
|
|
}:
|
|
|
|
let
|
|
sharedLibs = [
|
|
pcre portaudio freetype
|
|
SDL2 SDL2_image SDL2_gfx SDL2_mixer SDL2_net SDL2_ttf
|
|
sqlite lua zlib libX11 libGLU libGL ffmpeg
|
|
];
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "ultrastardx";
|
|
version = "2020.4.0";
|
|
src = fetchFromGitHub {
|
|
owner = "UltraStar-Deluxe";
|
|
repo = "USDX";
|
|
rev = "v${version}";
|
|
sha256 = "0vmfv8zpyf8ymx3rjydpd7iqis080lni94vb316vfxkgvjmqbhym";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ fpc libpng ] ++ sharedLibs;
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fpc-3.2-support.patch";
|
|
url = "https://github.com/UltraStar-Deluxe/USDX/commit/1b8e8714c1523ef49c2fd689a1545d097a3d76d7.patch";
|
|
sha256 = "02zmjymj9w1mkpf7armdpf067byvml6lprs1ca4lhpkv45abddp4";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/config.inc.in \
|
|
--subst-var-by libpcre_LIBNAME libpcre.so.1
|
|
'';
|
|
|
|
preBuild = with stdenv.lib;
|
|
let items = concatMapStringsSep " " (x: "-rpath ${getLib x}/lib") sharedLibs;
|
|
in ''
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS ${items}"
|
|
'';
|
|
|
|
# dlopened libgcc requires the rpath not to be shrinked
|
|
dontPatchELF = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://ultrastardx.sourceforge.net/";
|
|
description = "Free and open source karaoke game";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ Profpatsch ];
|
|
};
|
|
}
|