summary refs log tree commit diff
path: root/pkgs/tools/networking/atftp
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-12-17 12:11:30 -0600
committerJohn Wiegley <johnw@newartisans.com>2014-12-26 11:06:21 -0600
commit28b6fb61e651a3e2cca57d087781e7ba6ab45e7c (patch)
tree1931763370f483739474ebe0ab219eb0d7256c13 /pkgs/tools/networking/atftp
parentce100a5d58799e65684ad948db70638c311369b3 (diff)
downloadnixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar.gz
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar.bz2
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar.lz
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar.xz
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.tar.zst
nixpkgs-28b6fb61e651a3e2cca57d087781e7ba6ab45e7c.zip
Change occurrences of gcc to the more general cc
This is done for the sake of Yosemite, which does not have gcc, and yet
this change is also compatible with Linux.
Diffstat (limited to 'pkgs/tools/networking/atftp')
-rw-r--r--pkgs/tools/networking/atftp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix
index 8524a964f15..28568183db7 100644
--- a/pkgs/tools/networking/atftp/default.nix
+++ b/pkgs/tools/networking/atftp/default.nix
@@ -1,6 +1,6 @@
 { lib, stdenv, fetchurl, readline, tcp_wrappers, pcre, makeWrapper }:
 assert stdenv.isLinux;
-assert stdenv.gcc.gcc != null;
+assert stdenv.cc.gcc != null;
 let
 version = "0.7";
 debianPatch = fetchurl {
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
   buildInputs = [ readline tcp_wrappers pcre makeWrapper ];
   patches = [ debianPatch ];
   postInstall = ''
-    wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.gcc.gcc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""}
+    wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.gcc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""}
   '';
   meta = {
     description = "Advanced tftp tools";