From 1d99648436857a9c440ad276ed4bce81e38bfc53 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Wed, 19 Jul 2023 02:54:30 +0000 Subject: [PATCH] readsb: disable Nixpkgs fortify_source since upstream does that itself --- nix/pkgs/readsb/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/pkgs/readsb/default.nix b/nix/pkgs/readsb/default.nix index 8997ace830..34d3d56d3a 100644 --- a/nix/pkgs/readsb/default.nix +++ b/nix/pkgs/readsb/default.nix @@ -40,6 +40,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config ]; + hardeningDisable = [ "fortify" ]; # the application does this anyway makeFlags = "RTLSDR=yes AIRCRAFT_HASH_BITS=15 HISTORY=yes BLADERF=yes PLUTOSDR=yes AGGRESSIVE=yes HAVE_BIASTEE=yes"; enableParallelBuilding = true;