about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-07 15:07:42 +0000
committerRobin Gloster <mail@glob.in>2016-02-07 15:07:42 +0000
commit79219c1981d3c870dbb1f88da843378e02e49ce8 (patch)
tree53ddda84b9e07b1dcf75e724913990758e1c79fd
parent9492e06315c2f55ebf1edcf9ce7763379a11c708 (diff)
patchutils: turn off format hardening
-rw-r--r--pkgs/tools/text/patchutils/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/text/patchutils/default.nix b/pkgs/tools/text/patchutils/default.nix
index 4df52eef669eb..98f9c0483c2d0 100644
--- a/pkgs/tools/text/patchutils/default.nix
+++ b/pkgs/tools/text/patchutils/default.nix
@@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
 
   patches = [ ./drop-comments.patch ]; # we would get into a cycle when using fetchpatch on this one
 
+  hardening_format = false;
+
   meta = with stdenv.lib; {
     description = "Tools to manipulate patch files";
     homepage = http://cyberelk.net/tim/software/patchutils;