summary refs log tree commit diff
path: root/pkgs/tools/networking/dhcp
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-30 01:12:09 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-31 00:07:21 +0100
commit981ae25113c13b7989e89b8b57be25d9e186a63e (patch)
tree157004ea82ccdd23980e8e4ae7d17831e08e5bcc /pkgs/tools/networking/dhcp
parente5ded57aabe97617a7ca2b67494cdbc1d0fdedba (diff)
downloadnixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar.gz
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar.bz2
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar.lz
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar.xz
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.tar.zst
nixpkgs-981ae25113c13b7989e89b8b57be25d9e186a63e.zip
treewide: NIX_*_COMPILE -> string
Diffstat (limited to 'pkgs/tools/networking/dhcp')
-rw-r--r--pkgs/tools/networking/dhcp/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/dhcp/default.nix b/pkgs/tools/networking/dhcp/default.nix
index f6c204d26b7..5e552da98df 100644
--- a/pkgs/tools/networking/dhcp/default.nix
+++ b/pkgs/tools/networking/dhcp/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
     (lib.optional stdenv.isLinux "--with-randomdev=/dev/random")
   ] ++ stdenv.lib.optionals (openldap != null) [ "--with-ldap" "--with-ldapcrypto" ];
 
-  NIX_CFLAGS_COMPILE = [
+  NIX_CFLAGS_COMPILE = builtins.toString [
     "-Wno-error=pointer-compare"
     "-Wno-error=format-truncation"
     "-Wno-error=stringop-truncation"