about summary refs log tree commit diff
path: root/ftl.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 /ftl.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 'ftl.nix')
-rw-r--r--ftl.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ftl.nix b/ftl.nix
index a6fc84b2..17d484dc 100644
--- a/ftl.nix
+++ b/ftl.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     ];
   in ''
     patchelf \
-      --set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
+      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
       --set-rpath "${rpath}" data/amd64/bin/FTL
   '';