tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
lttng-modules: disable on 3.12 kernel
Domen Kožar
11 years ago
3514fad7
b41f2cde
+1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
lttng-modules
default.nix
+1
pkgs/os-specific/linux/lttng-modules/default.nix
···
1
1
{ stdenv, fetchurl, kernel }:
2
2
3
3
assert stdenv.lib.versionAtLeast kernel.version "3.4"; # fails on 3.2
4
4
+
assert builtins.substring 0 4 kernel.version != "3.12";
4
5
5
6
stdenv.mkDerivation rec {
6
7
pname = "lttng-modules-${version}";