···162162 # that in turn causes GHCi to abort
163163 stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
164164165165+ hardeningDisable = [ "format" ];
166166+165167 postInstall = ''
166168 for bin in "$out"/lib/${name}/bin/*; do
167169 isELF "$bin" || continue
+2
pkgs/development/compilers/ghc/8.4.2.nix
···172172173173 checkTarget = "test";
174174175175+ hardeningDisable = [ "format" ];
176176+175177 postInstall = ''
176178 for bin in "$out"/lib/${name}/bin/*; do
177179 isELF "$bin" || continue
+6
pkgs/development/libraries/a52dec/default.nix
···88 sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
99 };
10101111+ # fails 1 out of 1 tests with "BAD GLOBAL SYMBOLS" on i686
1212+ # which can also be fixed with
1313+ # hardeningDisable = stdenv.lib.optional stdenv.isi686 "pic";
1414+ # but it's better to disable tests than loose ASLR on i686
1515+ doCheck = !stdenv.isi686;
1616+1117 meta = {
1218 description = "ATSC A/52 stream decoder";
1319 homepage = http://liba52.sourceforge.net/;