From d7ab2af3a604241eda775eeeef8325b14f9edf1a Mon Sep 17 00:00:00 2001 From: Emily Date: Thu, 21 Nov 2024 19:52:01 +0000 Subject: [PATCH] linuxPackages.systemtap: 5.0a -> 5.2 Includes fixes for GCC 14. --- pkgs/development/tools/profiling/systemtap/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/profiling/systemtap/default.nix b/pkgs/development/tools/profiling/systemtap/default.nix index c6595db224ef..898b499e9268 100644 --- a/pkgs/development/tools/profiling/systemtap/default.nix +++ b/pkgs/development/tools/profiling/systemtap/default.nix @@ -8,8 +8,8 @@ let ## fetchgit info url = "git://sourceware.org/git/systemtap.git"; rev = "release-${version}"; - sha256 = "sha256-2L7+k/tgI6trkstDTY4xxfFzmNDlxbCHDRKAFaERQeM="; - version = "5.0a"; + hash = "sha256-SUPNarZW8vdK9hQaI2kU+rfKWIPiXB4BvJvRNC1T9tU="; + version = "5.2"; inherit (kernel) stdenv; @@ -17,11 +17,10 @@ let stapBuild = stdenv.mkDerivation { pname = "systemtap"; inherit version; - src = fetchgit { inherit url rev sha256; }; + src = fetchgit { inherit url rev hash; }; nativeBuildInputs = [ pkg-config cpio python3 python3.pkgs.setuptools ]; buildInputs = [ elfutils gettext python3 ]; enableParallelBuilding = true; - env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=deprecated-declarations" ]; # Needed with GCC 12 }; ## symlink farm for --sysroot flag