summary refs log tree commit diff
path: root/pkgs/applications/blockchains
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/applications/blockchains
parente59c610d58882a5bc36d37e8c8ef912407492447 (diff)
downloadnixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.gz
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.bz2
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.lz
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.xz
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.tar.zst
nixpkgs-afd38ea1ee03a9287bbe3350a4c289544daf1a74.zip
stop using hardeningDisable = [ "fortify" ]; for Go packages
it seems that the issue #25959 is not present anymore
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/go-ethereum.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/applications/blockchains/go-ethereum.nix b/pkgs/applications/blockchains/go-ethereum.nix
index a59cffb4b1d..07d16494646 100644
--- a/pkgs/applications/blockchains/go-ethereum.nix
+++ b/pkgs/applications/blockchains/go-ethereum.nix
@@ -10,9 +10,6 @@ buildGoPackage rec {
   propagatedBuildInputs =
     stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
 
-  # Fixes Cgo related build failures (see https://github.com/NixOS/nixpkgs/issues/25959 )
-  hardeningDisable = [ "fortify" ];
-
   src = fetchFromGitHub {
     owner = "ethereum";
     repo = pname;