summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-10-03 00:38:54 +0200
committerGitHub <noreply@github.com>2019-10-03 00:38:54 +0200
commit465566948393cf533e3617704d1c4ccc34cf3753 (patch)
tree259a2c7fdf043546d2cc919a9f22ea499f571293 /pkgs/tools/networking
parent0cd88820b3f68129fda7f5207fbbc0cda7ce0684 (diff)
parentfa8b4eec80d5d890cfc741790ce465c9d36156c4 (diff)
downloadnixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar.gz
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar.bz2
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar.lz
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar.xz
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.tar.zst
nixpkgs-465566948393cf533e3617704d1c4ccc34cf3753.zip
Gnome 3.34 (#68608)
Gnome 3.34
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/network-manager/iodine/default.nix4
-rw-r--r--pkgs/tools/networking/network-manager/strongswan.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/network-manager/iodine/default.nix b/pkgs/tools/networking/network-manager/iodine/default.nix
index 27e091b6b60..a7f5bbf145e 100644
--- a/pkgs/tools/networking/network-manager/iodine/default.nix
+++ b/pkgs/tools/networking/network-manager/iodine/default.nix
@@ -24,8 +24,8 @@ in stdenv.mkDerivation {
 
   nativeBuildInputs = [ intltool pkgconfig ];
 
-  # Fixes deprecation errors with networkmanager 1.10.2
-  NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations";
+  # glib-2.62 deprecations
+  NIX_CFLAGS_COMPILE = [ "-DGLIB_DISABLE_DEPRECATION_WARNINGS" ];
 
   configureFlags = [
     "--without-libnm-glib"
diff --git a/pkgs/tools/networking/network-manager/strongswan.nix b/pkgs/tools/networking/network-manager/strongswan.nix
index 60c344e8eb4..448fef4226a 100644
--- a/pkgs/tools/networking/network-manager/strongswan.nix
+++ b/pkgs/tools/networking/network-manager/strongswan.nix
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ intltool pkgconfig ];
 
-  # Fixes deprecation errors with networkmanager 1.10.2
-  NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations";
+  # glib-2.62 deprecations
+  NIX_CFLAGS_COMPILE = [ "-DGLIB_DISABLE_DEPRECATION_WARNINGS" ];
 
   configureFlags = [
     "--without-libnm-glib"