mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
a452b43ee5
On linux 3.14, we get errors like error: 'struct snd_soc_codec' has no member named 'name' __string( name, codec->CODEC_NAME_FIELD ) indicating that the module is incompatible with the linux API in this kernel version. See https://hydra.nixos.org/build/33102405/nixlog/1/raw
33 lines
905 B
Nix
33 lines
905 B
Nix
{ stdenv, fetchurl, kernel }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lttng-modules-${version}";
|
|
name = "${pname}-${kernel.version}";
|
|
version = "2.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
|
|
sha256 = "0sk7cyjf5ylmxqrrrz5zmmw4c0dmxh1f98aj870gmcnxfa76y4mx";
|
|
};
|
|
|
|
preConfigure = ''
|
|
export KERNELDIR="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
export INSTALL_MOD_PATH="$out"
|
|
'';
|
|
|
|
installPhase = ''
|
|
make modules_install
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Linux kernel modules for LTTng tracing";
|
|
homepage = http://lttng.org/;
|
|
license = with licenses; [ lgpl21 gpl2 mit ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
broken =
|
|
(builtins.compareVersions kernel.version "3.18" == -1) ||
|
|
(kernel.features.grsecurity or false);
|
|
};
|
|
|
|
}
|