summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-03-19 00:37:45 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-26 21:54:58 -0400
commit1b5021771b5d0e7ca675f96fda2d3e5775c14230 (patch)
treef21d261cd627ad3ddd8b1181d9e71f7ed6c8d2a4
parent32acda1b4d50152d9cb34bd0abda90e1caf1840f (diff)
downloadnixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar.gz
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar.bz2
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar.lz
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar.xz
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.tar.zst
nixpkgs-1b5021771b5d0e7ca675f96fda2d3e5775c14230.zip
go1.12: remove dsymutil patch
stdenv provides dsymutil for us. Already done for other compilers but
not this one.
-rw-r--r--pkgs/development/compilers/go/1.12.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/compilers/go/1.12.nix b/pkgs/development/compilers/go/1.12.nix
index 44304006f6b..496206b0f15 100644
--- a/pkgs/development/compilers/go/1.12.nix
+++ b/pkgs/development/compilers/go/1.12.nix
@@ -141,9 +141,6 @@ stdenv.mkDerivation rec {
 
   postPatch = ''
     find . -name '*.orig' -exec rm {} ';'
-  '' + optionalString stdenv.isDarwin ''
-    echo "substitute hardcoded dsymutil with ${llvm}/bin/llvm-dsymutil"
-    substituteInPlace "src/cmd/link/internal/ld/lib.go" --replace dsymutil ${llvm}/bin/llvm-dsymutil
   '';
 
   GOOS = stdenv.targetPlatform.parsed.kernel.name;