summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-29 01:29:00 +0000
committerRobin Gloster <mail@glob.in>2016-08-29 01:29:00 +0000
commit306cd03cdba889b34ebe539396a0ec2c2b20c8c1 (patch)
tree8d05613e02b13685b7c49831b4c2feb2bb7d3667 /pkgs/development
parenta2dd51e6a2d57b07c49c9abc831ab4256ca1b96a (diff)
downloadnixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar.gz
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar.bz2
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar.lz
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar.xz
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.tar.zst
nixpkgs-306cd03cdba889b34ebe539396a0ec2c2b20c8c1.zip
indent: disable format hardening
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/indent/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/indent/default.nix b/pkgs/development/tools/misc/indent/default.nix
index 594bef7e16a..996043c16d8 100644
--- a/pkgs/development/tools/misc/indent/default.nix
+++ b/pkgs/development/tools/misc/indent/default.nix
@@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
     sed -i 's|#include <malloc.h>|#include <malloc/malloc.h>|' ./man/texinfo2man.c
   '';
 
+  hardeningDisable = [ "format" ];
+
   meta = {
     homepage = https://www.gnu.org/software/indent/;
     description = "A source code reformatter";