tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
prl-tools: assert linux kernel version < 4.15
Luke Adams
8 years ago
552105d5
45fa79d4
+2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
prl-tools
default.nix
+2
pkgs/os-specific/linux/prl-tools/default.nix
···
6
}:
7
8
assert (!libsOnly) -> kernel != null;
0
0
9
10
let xorgFullVer = (builtins.parseDrvName xorg.xorgserver.name).version;
11
xorgVer = lib.concatStringsSep "." (lib.take 2 (lib.splitString "." xorgFullVer));
···
6
}:
7
8
assert (!libsOnly) -> kernel != null;
9
+
# Disable for kernels 4.15 and above due to compatibility issues
10
+
assert kernel != null -> stdenv.lib.versionOlder kernel.version "4.15";
11
12
let xorgFullVer = (builtins.parseDrvName xorg.xorgserver.name).version;
13
xorgVer = lib.concatStringsSep "." (lib.take 2 (lib.splitString "." xorgFullVer));