openarena: needs libcurl for fast assets downloads
This commit is contained in:
parent
0520634725
commit
b6dbdaa28c
@ -1,4 +1,4 @@
|
||||
{ fetchurl, makeWrapper, patchelf, pkgs, stdenv, SDL, libogg, libvorbis }:
|
||||
{ fetchurl, makeWrapper, patchelf, pkgs, stdenv, SDL, libogg, libvorbis, curl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "openarena-${version}";
|
||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
installPhase = let
|
||||
gameDir = "$out/openarena-$version";
|
||||
interpreter = "$(< \"$NIX_CC/nix-support/dynamic-linker\")";
|
||||
libPath = stdenv.lib.makeLibraryPath [ SDL libogg libvorbis ];
|
||||
libPath = stdenv.lib.makeLibraryPath [ SDL libogg libvorbis curl ];
|
||||
in ''
|
||||
mkdir -pv $out/bin
|
||||
cd $out
|
||||
|
Loading…
Reference in New Issue
Block a user