File tree Expand file tree Collapse file tree
pkgs/os-specific/linux/exfat Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44# Upstream build for kernel 4.1 is broken, 3.12 and below seems to be working
55assert lib . versionAtLeast kernel . version "4.2" || lib . versionOlder kernel . version "4.0" ;
6- # linux kernel above 5.7 comes with its own exfat implementation https://github.com/arter97/exfat-linux/issues/27
7- assert lib . versionOlder kernel . version "5.8" ;
86
97stdenv . mkDerivation rec {
8+ # linux kernel above 5.7 comes with its own exfat implementation https://github.com/arter97/exfat-linux/issues/27
9+ # Assertion moved here due to some tests unintenionally triggering it,
10+ # e.g. nixosTests.kernel-latest; it's unclear how/why so far.
11+ assertion = assert lib . versionOlder kernel . version "5.8" ; null ;
12+
1013 name = "exfat-nofuse-${ version } -${ kernel . version } " ;
1114 version = "2020-04-15" ;
1215
You can’t perform that action at this time.
0 commit comments