nixpkgs/pkgs/games/ultrastardx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, autoreconfHook
, fetchFromGitHub
, fetchpatch
, pkg-config
, lua
, fpc
, pcre
, portaudio
, freetype
, libpng
, SDL2
, SDL2_image
, SDL2_gfx
, SDL2_mixer
, SDL2_net, SDL2_ttf
, ffmpeg_4
, 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_4
];
in stdenv.mkDerivation rec {
pname = "ultrastardx";
2024-03-02 22:50:11 +00:00
version = "2024.3.0";
2023-08-23 11:22:56 +00:00
src = fetchFromGitHub {
owner = "UltraStar-Deluxe";
repo = "USDX";
2023-08-23 11:22:56 +00:00
rev = "v${version}";
2024-03-02 22:50:11 +00:00
hash = "sha256-0+7PMSnQoNu6tcR9MB6b94fWlMRvH10ySUhdSicWU8U=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2017-08-12 12:01:08 +00:00
buildInputs = [ fpc libpng ] ++ sharedLibs;
postPatch = ''
substituteInPlace src/config.inc.in \
--subst-var-by libpcre_LIBNAME libpcre.so.1
# ultrastardx binds to libffmpeg (and sublibs), specifying a very restrictive
# upper bounds on the minor versions of .so files.
# We can assume ffmpeg_4 wont break any major ABI compatibility, since it's
# effectively EOL
sed \
-e 's/^ LIBAVCODEC_MAX_VERSION_MINOR.*$/ LIBAVCODEC_MAX_VERSION_MINOR = 1000;/' \
-i src/lib/ffmpeg-4.0/avcodec.pas
sed \
-e 's/^ LIBAVFORMAT_MAX_VERSION_MINOR.*$/ LIBAVFORMAT_MAX_VERSION_MINOR = 1000;/' \
-i src/lib/ffmpeg-4.0/avformat.pas
sed \
-e 's/^ LIBAVUTIL_MAX_VERSION_MINOR.*$/ LIBAVUTIL_MAX_VERSION_MINOR = 1000;/' \
-i src/lib/ffmpeg-4.0/avutil.pas
sed \
-e 's/^ LIBSWRESAMPLE_MAX_VERSION_MINOR.*$/ LIBSWRESAMPLE_MAX_VERSION_MINOR = 1000;/' \
-i src/lib/ffmpeg-4.0/swresample.pas
sed \
-e 's/^ LIBSWSCALE_MAX_VERSION_MINOR.*$/ LIBSWSCALE_MAX_VERSION_MINOR = 1000;/' \
-i src/lib/ffmpeg-4.0/swscale.pas
'';
2021-01-15 04:31:39 +00:00
preBuild = with 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 lib; {
2023-08-23 11:22:56 +00:00
homepage = "https://usdx.eu/";
description = "Free and open source karaoke game";
mainProgram = "ultrastardx";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ Profpatsch ];
2024-03-17 14:40:23 +00:00
platforms = platforms.linux;
};
}