Skip to content

Commit

Permalink
Merge pull request NixOS#270165 from delroth/systemtap-cross
Browse files Browse the repository at this point in the history
linuxPackages.systemtap: fix cross-build by depending on host Python
  • Loading branch information
infinisil authored Nov 26, 2023
2 parents 4a094f1 + bc5c75e commit 78112a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/tools/profiling/systemtap/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
inherit version;
src = fetchgit { inherit url rev sha256; };
nativeBuildInputs = [ pkg-config cpio python3 python3.pkgs.setuptools ];
buildInputs = [ elfutils gettext ];
buildInputs = [ elfutils gettext python3 ];
enableParallelBuilding = true;
env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=deprecated-declarations" ]; # Needed with GCC 12
};
Expand Down

0 comments on commit 78112a9

Please sign in to comment.