Skip to content

Commit 0537320

Browse files
committedApr 24, 2017
networkmanager: Temporarily disable -Wformat-security until next release
Reportedly this is due to GLib 2.52 which added a G_GNUC_PRINTF attribute to g_dbus_message_new_method_error().
1 parent cf3800b commit 0537320

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎pkgs/tools/networking/network-manager/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
1010
pname = "NetworkManager";
1111
major = "1.6";
1212
version = "${major}.2";
13+
# FIXME: this problem is fixed upstream (commit 6a77258f4ec2), remove when upgrading ^^^
14+
hardeningDisable = [ "format" ];
1315

1416
src = fetchurl {
1517
url = "mirror://gnome/sources/${pname}/${major}/${pname}-${version}.tar.xz";

0 commit comments

Comments
 (0)
Please sign in to comment.