summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-27 10:28:55 +0100
committerGitHub <noreply@github.com>2021-01-27 10:28:55 +0100
commitad97ca4e510a433e869a4e8d8a50744ed1e1b002 (patch)
tree8e331277e54b577223742de054c6093bc090eba8 /pkgs/development/tools
parent2ee93d61ad2220199e8116526d485a8e23e9aee5 (diff)
parent3bbad8b041ce225eeb84b335c1cd1305b8c6f693 (diff)
Merge pull request #110912 from siraben/stdenv-lib-inherit
treewide: remove inherited stdenv.lib
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/profiling/systemtap/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/tools/profiling/systemtap/default.nix b/pkgs/development/tools/profiling/systemtap/default.nix
index c978d8bd96a7..c5d65a8239ea 100644
--- a/pkgs/development/tools/profiling/systemtap/default.nix
+++ b/pkgs/development/tools/profiling/systemtap/default.nix
@@ -1,4 +1,4 @@
-{ fetchgit, pkg-config, gettext, runCommand, makeWrapper
+{ lib, fetchgit, pkg-config, gettext, runCommand, makeWrapper
, elfutils, kernel, gnumake, python2, python2Packages
}:
@@ -10,7 +10,6 @@ let
version = "4.1";
inherit (kernel) stdenv;
- inherit (stdenv) lib;
## stap binaries
stapBuild = stdenv.mkDerivation {