about summary refs log tree commit diff
path: root/fez.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-12-31 13:01:36 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-12-31 13:01:36 +0100
commit987d7bcad86901f304ca932e54fe4104ad40dfc6 (patch)
tree907d114840c512a9ac3ac7406feb7974b40d698e /fez.nix
parent488611aea412a7392a6b58ba608904e148423840 (diff)
Change CC references from $NIX_GCC to $NIX_CC.
The variable name has changed to a more generic NIX_CC in
NixOS/nixpkgs@05edd656f6bdecde31eb0270209cfc7e2320caad.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'fez.nix')
-rw-r--r--fez.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/fez.nix b/fez.nix
index 59cda41d..5f23b97c 100644
--- a/fez.nix
+++ b/fez.nix
@@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
 
   buildPhase = ''
     patchelf \
-      --set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
+      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
       --set-rpath "${stdenv.lib.makeLibraryPath [ mono openal SDL2 ]}" \
       FEZ.bin.x86_64
   '';