about summary refs log tree commit diff
path: root/pkgs/servers/livepeer
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2019-10-27 14:44:26 +0100
committerPavol Rusnak <pavol@rusnak.io>2019-10-27 14:44:26 +0100
commitafd38ea1ee03a9287bbe3350a4c289544daf1a74 (patch)
treefc72f4db330bfffd27323ee40bd6d5e69ce4cc73 /pkgs/servers/livepeer
parente59c610d58882a5bc36d37e8c8ef912407492447 (diff)
downloadnixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.gz
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.bz2
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.lz
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.xz
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.zst
nixlib-afd38ea1ee03a9287bbe3350a4c289544daf1a74.zip
stop using hardeningDisable = [ "fortify" ]; for Go packages
it seems that the issue #25959 is not present anymore
Diffstat (limited to 'pkgs/servers/livepeer')
-rw-r--r--pkgs/servers/livepeer/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/servers/livepeer/default.nix b/pkgs/servers/livepeer/default.nix
index 798bda8e306e..64edcb2ef4fa 100644
--- a/pkgs/servers/livepeer/default.nix
+++ b/pkgs/servers/livepeer/default.nix
@@ -18,11 +18,6 @@ buildGoPackage rec {
 
   buildInputs = [ pkgconfig ffmpeg ];
 
-  # XXX This removes the -O2 flag, to avoid errors like:
-  #   cgo-dwarf-inference:2:8: error: enumerator value for '__cgo_enum__0' is not an integer constant
-  # This is a workaround for nixpkgs+golang BUG https://github.com/NixOS/nixpkgs/issues/25959
-  hardeningDisable = [ "fortify" ];
-
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {