summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorEric Seidel <gridaphobe@gmail.com>2015-05-11 14:37:53 -0700
committerEric Seidel <gridaphobe@gmail.com>2015-05-11 14:44:50 -0700
commit662a6b1ca62b2e44115f6e29999f30896ddfa075 (patch)
treede5c2d6b8130d3e1d9c89038c32a22eef2bf423a /pkgs/tools/networking
parent395829686d0219b3e14fe6ffae60a24b4e50370b (diff)
downloadnixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.gz
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.bz2
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.lz
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.xz
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.tar.zst
nixpkgs-662a6b1ca62b2e44115f6e29999f30896ddfa075.zip
remove all references to `stdenv.cc.cc.is{GNU,Clang}`
use the new `stdenv.cc.is{GNU,Clang}` instead, which will always be
defined.
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/atftp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix
index 930d9f4968b..c98dc5baea5 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.cc.cc.isGNU or false;
+assert stdenv.cc.isGNU;
 let
 version = "0.7";
 debianPatch = fetchurl {