about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2024-01-21 15:59:55 +0000
committerRobert Scott <code@humanleg.org.uk>2024-02-24 12:00:11 +0000
commit4123c6c93f5349072bedf91b8ee4dd2a9a368986 (patch)
tree0bb77f4e0b3b703a9d364179e7a6acccc5fe229c /pkgs/development/tools
parentf63d2dfb562ea05507c1e3cf1bc498762dd4d656 (diff)
downloadnixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar.gz
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar.bz2
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar.lz
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar.xz
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.tar.zst
nixlib-4123c6c93f5349072bedf91b8ee4dd2a9a368986.zip
lttng-ust: disable trivialautovarinit hardening flag
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/lttng-ust/generic.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/lttng-ust/generic.nix b/pkgs/development/tools/misc/lttng-ust/generic.nix
index 56ad3b19e520..60b133f73144 100644
--- a/pkgs/development/tools/misc/lttng-ust/generic.nix
+++ b/pkgs/development/tools/misc/lttng-ust/generic.nix
@@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
     patchShebangs .
   '';
 
+  hardeningDisable = [ "trivialautovarinit" ];
+
   configureFlags = [ "--disable-examples" ];
 
   propagatedBuildInputs = [ liburcu ];