mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
openspades: link to openal instead of using LD_LIBRARY_PATH
This commit is contained in:
parent
a211eef81a
commit
a7fe84e38a
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, cmake, curl, glew, makeWrapper, mesa, SDL2,
|
||||
{ stdenv, lib, fetchurl, cmake, curl, glew, makeWrapper, mesa, SDL2,
|
||||
SDL2_image, unzip, wget, zlib, withOpenal ? true, openal ? null }:
|
||||
|
||||
assert withOpenal -> openal != null;
|
||||
@ -20,9 +20,8 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
nativeBuildInputs =
|
||||
with stdenv.lib;
|
||||
[ cmake curl glew makeWrapper mesa SDL2 SDL2_image unzip wget zlib ]
|
||||
++ optional withOpenal openal;
|
||||
++ lib.optional withOpenal openal;
|
||||
|
||||
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DOPENSPADES_INSTALL_BINARY=bin" ];
|
||||
|
||||
@ -38,13 +37,7 @@ stdenv.mkDerivation rec {
|
||||
unzip -u -o Resources/DevPaks27.zip -d Resources/DevPak
|
||||
'';
|
||||
|
||||
# OpenAL is loaded dynamicly
|
||||
postInstall =
|
||||
if withOpenal then ''
|
||||
wrapProgram "$out/bin/openspades" \
|
||||
--prefix LD_LIBRARY_PATH : "${openal}/lib"
|
||||
''
|
||||
else null;
|
||||
NIX_CFLAGS_LINK = lib.optional withOpenal "-lopenal";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A compatible client of Ace of Spades 0.75";
|
||||
|
Loading…
Reference in New Issue
Block a user