2017-06-14 10:29:31 +01:00
|
|
|
{ stdenv, autoreconfHook, fetchFromGitHub, pkgconfig
|
|
|
|
, lua, fpc, pcre, portaudio, freetype, libpng
|
|
|
|
, SDL2, SDL2_image, SDL2_gfx, SDL2_mixer, SDL2_net, SDL2_ttf
|
2018-02-24 13:12:44 +00:00
|
|
|
, ffmpeg, sqlite, zlib, libX11, libGLU_combined }:
|
2017-06-14 10:29:31 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
sharedLibs = [
|
|
|
|
pcre portaudio freetype
|
|
|
|
SDL2 SDL2_image SDL2_gfx SDL2_mixer SDL2_net SDL2_ttf
|
2018-02-24 13:12:44 +00:00
|
|
|
sqlite lua zlib libX11 libGLU_combined ffmpeg
|
2017-06-14 10:29:31 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ultrastardx";
|
2017-08-12 13:01:08 +01:00
|
|
|
version = "2017.8.0";
|
2017-06-14 10:29:31 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "UltraStar-Deluxe";
|
|
|
|
repo = "USDX";
|
|
|
|
rev = "v${version}";
|
2017-08-12 13:01:08 +01:00
|
|
|
sha256 = "1zp0xfwzci3cjmwx3cprcxvm60cik5cvhvrz9n4d6yb8dv38nqzm";
|
2017-06-14 10:29:31 +01:00
|
|
|
};
|
|
|
|
|
2017-08-12 13:01:08 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
buildInputs = [ fpc libpng ] ++ sharedLibs;
|
2017-06-14 10:29:31 +01:00
|
|
|
|
2019-06-03 08:52:52 +01:00
|
|
|
# https://github.com/UltraStar-Deluxe/USDX/issues/462
|
2017-06-14 10:29:31 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/config.inc.in \
|
2019-06-03 08:52:52 +01:00
|
|
|
--subst-var-by lua_LIB_NAME liblua.so \
|
2017-06-14 10:29:31 +01:00
|
|
|
--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;
|
2018-02-12 06:18:12 +00:00
|
|
|
maintainers = with maintainers; [ Profpatsch ];
|
2017-06-14 10:29:31 +01:00
|
|
|
};
|
|
|
|
}
|