linuxPackages.lttng-modules: 2.13.15 -> 2.14.3 (#461835)

This commit is contained in:
Bjørn Forsman
2026-05-16 06:08:37 +00:00
committed by GitHub
@@ -6,15 +6,15 @@
kernelModuleMakeFlags,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "lttng-modules-${kernel.version}";
version = "2.13.22";
version = "2.14.3";
src = fetchFromGitHub {
owner = "lttng";
repo = "lttng-modules";
rev = "v${version}";
hash = "sha256-0fHjJBG/nTjXX8MVArvKDvn2ho9GLEodqAv/DcHLWis=";
rev = "v${finalAttrs.version}";
hash = "sha256-W9mfCMboVkImqBtUlTxoBkn3IHjjfbZiSaeoeFX5IcM=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
@@ -44,4 +44,4 @@ stdenv.mkDerivation rec {
(lib.versions.majorMinor kernel.modDirVersion) == "5.10"
|| (lib.versions.majorMinor kernel.modDirVersion) == "5.4";
};
}
})