about summary refs log tree commit diff
path: root/pkgs/tools/networking/trickle
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-21 09:44:40 +0000
committerRobin Gloster <mail@glob.in>2016-02-21 09:44:40 +0000
commit99087d92166731e74a0e16e01f9ea3ab60ab36c6 (patch)
tree486c3b56602cf081ebfb6f03db05fa865015d19c /pkgs/tools/networking/trickle
parentf2d5bda7c9f7610810588ade440d37c69b613e20 (diff)
downloadnixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar.gz
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar.bz2
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar.lz
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar.xz
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.tar.zst
nixlib-99087d92166731e74a0e16e01f9ea3ab60ab36c6.zip
trickle: turn off format hardening
Diffstat (limited to 'pkgs/tools/networking/trickle')
-rw-r--r--pkgs/tools/networking/trickle/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/networking/trickle/default.nix b/pkgs/tools/networking/trickle/default.nix
index d10e645dc874..22f991d8fe2a 100644
--- a/pkgs/tools/networking/trickle/default.nix
+++ b/pkgs/tools/networking/trickle/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "0s1qq3k5mpcs9i7ng0l9fvr1f75abpbzfi1jaf3zpzbs1dz50dlx";
   };
 
-  buildInputs = [libevent];
+  buildInputs = [ libevent ];
 
   preConfigure = ''
     sed -i 's|libevent.a|libevent.so|' configure
@@ -22,6 +22,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = "--with-libevent";
 
+  hardening_format = false;
+
   meta = {
     description = "Lightweight userspace bandwidth shaper";
     license = stdenv.lib.licenses.bsd3;