about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/exfat
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-02-21 23:45:59 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-22 21:34:27 +0000
commit7560f8eea5fb2092e1c93ca0e5f1f8c421e06830 (patch)
tree92b71cbca32ed4e73a32ba99d1b3a6e6dcbbb63c /pkgs/os-specific/linux/exfat
parent807ac7dcbea8dec402f71f24f868e691f2e7fe95 (diff)
linuxPackages.exfat-nofuse: set to null when unsupported
This is the same thing every other obsolete kernel module does, and
it's better than an assertion because an assertion prevents testing
evaluation of all the modules for a particular kernel.
Diffstat (limited to 'pkgs/os-specific/linux/exfat')
-rw-r--r--pkgs/os-specific/linux/exfat/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/exfat/default.nix b/pkgs/os-specific/linux/exfat/default.nix
index ee6f448112d88..3d2445df49806 100644
--- a/pkgs/os-specific/linux/exfat/default.nix
+++ b/pkgs/os-specific/linux/exfat/default.nix
@@ -1,11 +1,6 @@
 { stdenv, lib, fetchFromGitHub, fetchpatch, kernel }:
 
 stdenv.mkDerivation rec {
-  # linux kernel above 5.7 comes with its own exfat implementation https://github.com/arter97/exfat-linux/issues/27
-  # Assertion moved here due to some tests unintenionally triggering it,
-  # e.g. nixosTests.kernel-latest; it's unclear how/why so far.
-  assertion = assert lib.versionOlder kernel.version "5.8"; null;
-
   name = "exfat-nofuse-${version}-${kernel.version}";
   version = "2020-04-15";