summary refs log tree commit diff
path: root/pkgs/tools/misc/vorbisgain/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/vorbisgain/default.nix')
-rw-r--r--pkgs/tools/misc/vorbisgain/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/misc/vorbisgain/default.nix b/pkgs/tools/misc/vorbisgain/default.nix
index ea61e063328..567783f6313 100644
--- a/pkgs/tools/misc/vorbisgain/default.nix
+++ b/pkgs/tools/misc/vorbisgain/default.nix
@@ -8,11 +8,14 @@ stdenv.mkDerivation rec {
     sha256 = "1v1h6mhnckmvvn7345hzi9abn5z282g4lyyl4nnbqwnrr98v0vfx";
   };
 
+  hardeningDisable = [ "format" ];
+
   buildInputs = [ unzip libogg libvorbis ];
+
   patchPhase = ''
     chmod -v +x configure
     configureFlags="--mandir=$out/share/man"
-    '';
+  '';
 
   meta = with stdenv.lib; {
     homepage = http://sjeng.org/vorbisgain.html;