summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/blockchains/go-ethereum.nix
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/go-ethereum.nix
parente59c610d58882a5bc36d37e8c8ef912407492447 (diff)
stop using hardeningDisable = [ "fortify" ]; for Go packages
it seems that the issue #25959 is not present anymore
Diffstat (limited to 'pkgs/applications/blockchains/go-ethereum.nix')
-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 a59cffb4b1d2..07d16494646a 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;