1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 10:50:13 -04:00
nixpkgs/pkgs/games/ultrastardx/default.nix
2024-09-10 00:13:45 +00:00

68 lines
1.4 KiB
Nix

{ lib, stdenv
, autoreconfHook
, fetchFromGitHub
, pkg-config
, 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 = "2024.8.0";
src = fetchFromGitHub {
owner = "UltraStar-Deluxe";
repo = "USDX";
rev = "v${version}";
hash = "sha256-eji8lMrZbKAMYTqUk9d8tBIKkH083fbh4s01M0mPLpM=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ fpc libpng ] ++ sharedLibs;
postPatch = ''
substituteInPlace src/config.inc.in \
--subst-var-by libpcre_LIBNAME libpcre.so.1
'';
preBuild =
let items = lib.concatMapStringsSep " " (x: "-rpath ${lib.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; {
homepage = "https://usdx.eu/";
description = "Free and open source karaoke game";
mainProgram = "ultrastardx";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ Profpatsch ];
platforms = platforms.linux;
};
}