summary refs log tree commit diff
path: root/pkgs/games/ultrastardx
diff options
context:
space:
mode:
authorEric Seidel <gridaphobe@gmail.com>2015-01-14 20:25:26 -0800
committerEric Seidel <gridaphobe@gmail.com>2015-01-14 20:27:55 -0800
commitf3c6827373be102caae5dcbadd31e73ed60fa17f (patch)
tree9f9d57c16edc218bd590ca9956eb5227d084c33f /pkgs/games/ultrastardx
parent16fe4be790f541d68c01897640fda11f9673b8e9 (diff)
downloadnixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar.gz
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar.bz2
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar.lz
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar.xz
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.tar.zst
nixpkgs-f3c6827373be102caae5dcbadd31e73ed60fa17f.zip
rename all occurrences of stdenv.cc.gcc to stdenv.cc.cc
Diffstat (limited to 'pkgs/games/ultrastardx')
-rw-r--r--pkgs/games/ultrastardx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/ultrastardx/default.nix b/pkgs/games/ultrastardx/default.nix
index 96f7b8a52fc..3eabaa090bb 100644
--- a/pkgs/games/ultrastardx/default.nix
+++ b/pkgs/games/ultrastardx/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   # The fpc is not properly wrapped to add -rpath. I add this manually.
   # I even do a trick on lib/lib64 for libgcc, that I expect it will work.
   preBuild = ''
-    export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${SDL}/lib -rpath ${SDL_image}/lib -rpath ${libpng}/lib -rpath ${freetype}/lib -rpath ${portaudio}/lib -rpath ${ffmpeg}/lib -rpath ${zlib}/lib -rpath ${sqlite}/lib -rpath ${libX11}/lib -rpath ${pcre}/lib -rpath ${lua}/lib -rpath ${stdenv.cc.gcc}/lib64 -rpath ${stdenv.cc.gcc}/lib"
+    export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${SDL}/lib -rpath ${SDL_image}/lib -rpath ${libpng}/lib -rpath ${freetype}/lib -rpath ${portaudio}/lib -rpath ${ffmpeg}/lib -rpath ${zlib}/lib -rpath ${sqlite}/lib -rpath ${libX11}/lib -rpath ${pcre}/lib -rpath ${lua}/lib -rpath ${stdenv.cc.cc}/lib64 -rpath ${stdenv.cc.cc}/lib"
 
     sed -i 414,424d Makefile
   '';