From fe61c3b84e8e81a8ec2bf6b3ed2a0e8652cea190 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 14 Dec 2017 00:53:23 +0000 Subject: [PATCH] bloaty: update path to c++filt after #29396 --- pkgs/development/tools/bloaty/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/bloaty/default.nix b/pkgs/development/tools/bloaty/default.nix index e61b7f78302b..0dbe1aa78c50 100644 --- a/pkgs/development/tools/bloaty/default.nix +++ b/pkgs/development/tools/bloaty/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { preConfigure = '' substituteInPlace src/bloaty.cc \ --replace "c++filt" \ - "${stdenv.lib.getBin binutils}/bin/c++filt" + "${binutils.bintools}/bin/c++filt" ''; doCheck = true;