summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2017-11-08 14:20:48 -0500
committerGitHub <noreply@github.com>2017-11-08 14:20:48 -0500
commit01018567653aaa58bedf6f7ca6a02c6d50910075 (patch)
tree89dcb477933b3f439ef9f43e22e01a2ed360cfb7 /pkgs/development/tools
parent999bcd098da0fc6b16ae769dde95573e6b110844 (diff)
parent4d4f94cde4d3806ca063ebf7e6ba448b0feae355 (diff)
downloadnixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar.gz
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar.bz2
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar.lz
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar.xz
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.tar.zst
nixlib-01018567653aaa58bedf6f7ca6a02c6d50910075.zip
Merge pull request #30549 from obsidiansystems/bintools
treewide: Introduce stdenv.cc.bintools
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/profiling/systemtap/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/profiling/systemtap/default.nix b/pkgs/development/tools/profiling/systemtap/default.nix
index 89a1b5fe0aac..b397f02665bc 100644
--- a/pkgs/development/tools/profiling/systemtap/default.nix
+++ b/pkgs/development/tools/profiling/systemtap/default.nix
@@ -1,5 +1,7 @@
 { fetchgit, pkgconfig, gettext, runCommand, makeWrapper
-, elfutils, kernel, gnumake, python2, pythonPackages, binutils }:
+, elfutils, kernel, gnumake, python2, pythonPackages
+}:
+
 let
   ## fetchgit info
   url = git://sourceware.org/git/systemtap.git;
@@ -55,5 +57,5 @@ in runCommand "systemtap-${kernel.version}-${version}" {
   rm $out/bin/stap
   makeWrapper $stapBuild/bin/stap $out/bin/stap \
     --add-flags "-r $kernelBuildDir" \
-    --prefix PATH : ${lib.makeBinPath [ stdenv.cc.cc binutils elfutils gnumake ]}
+    --prefix PATH : ${lib.makeBinPath [ stdenv.cc.cc stdenv.cc.bintools elfutils gnumake ]}
 ''