summary refs log tree commit diff
path: root/pkgs/games/quake3/quake3e
diff options
context:
space:
mode:
authorAstro <astro@spaceboyz.net>2021-12-03 18:22:30 +0100
committerAstro <astro@spaceboyz.net>2021-12-03 18:22:30 +0100
commit863ef0dd47c0870c4772675aef18ca8f491880c6 (patch)
tree9b9194fb0d7e9a9d440e7bff89194c52939554c7 /pkgs/games/quake3/quake3e
parent721e732e3625858161ff95d5a4e1f3c57cb9c58c (diff)
downloadnixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar.gz
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar.bz2
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar.lz
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar.xz
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.tar.zst
nixpkgs-863ef0dd47c0870c4772675aef18ca8f491880c6.zip
quake3e: fix libcurl.so.4 location
Diffstat (limited to 'pkgs/games/quake3/quake3e')
-rw-r--r--pkgs/games/quake3/quake3e/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/games/quake3/quake3e/default.nix b/pkgs/games/quake3/quake3e/default.nix
index 25c6b4ddec0..7a1da6f6398 100644
--- a/pkgs/games/quake3/quake3e/default.nix
+++ b/pkgs/games/quake3/quake3e/default.nix
@@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
     sed -i -e 's#Sys_LoadLibrary( "libXrandr.so.2" )#Sys_LoadLibrary( "${libXrandr}/lib/libXrandr.so.2" )#' code/unix/x11_randr.c
     sed -i -e 's#Sys_LoadLibrary( "libXxf86vm.so.1" )#Sys_LoadLibrary( "${libXxf86vm}/lib/libXxf86vm.so.1" )#' code/unix/x11_randr.c
     sed -i -e 's#Sys_LoadLibrary( "libXxf86dga.so.1" )#Sys_LoadLibrary( "${libXxf86dga}/lib/libXxf86dga.so.1" )#' code/unix/x11_dga.c
+    sed -i -e 's#"libcurl.so.4"#"${curl.out}/lib/libcurl.so.4"#' code/client/cl_curl.h
   '';
 
   installPhase = ''